diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ee58312177..2fa188886c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,11 +6,11 @@ "ghcr.io/devcontainers/features/git:1": {}, "ghcr.io/devcontainers/features/github-cli:1": {}, "ghcr.io/devcontainers/features/node:1": {}, - "ghcr.io/devcontainers-contrib/features/protoc-asdf:1": {} + "ghcr.io/devcontainers-contrib/features/protoc-asdf:1": {}, }, "hostRequirements": { "cpus": 8, "memory": "16gb", - "storage": "128gb" - } + "storage": "128gb", + }, } diff --git a/.github/workflows/configs-verifier.yml b/.github/workflows/configs-verifier.yml index 1bbecf155b..7c8a8fedcd 100644 --- a/.github/workflows/configs-verifier.yml +++ b/.github/workflows/configs-verifier.yml @@ -25,8 +25,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install sha3sum + run: sudo apt-get install libdigest-sha3-perl - name: Verify hashes run: | for f in $(find configs/genesis-assets -type f -not -path configs/index.json); do - cat configs/index.json | grep $(md5sum $f | awk '{print $1}') + cat configs/index.json | grep $(sha3sum -a 256 $f | awk '{print $1}') done diff --git a/CHANGELOG.md b/CHANGELOG.md index 439c31ddb0..3c68450e71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ ## Next release +- feat: types in `mp-transactions` impl a method to get their version +- feat: make L1 gas price a `const` of the `RuntimeConfig` +- fix: broken class hashes and contracts in genesis +- refactor: rename LAST_SYNCED_L1_BLOCK to be more clear +- chore: add headers to da calldata, fix eth da in sovereign mode +- refacto(simulate_tx): move logic to the client +- chore: added ca-certificate in DockerFile for SSL related issues +- chore(primitives/commitment): remove crate +- chore(primitives/block/header): remove starknet-trie dependent fields +- refacto(primitives/db): add a temporary way to get a fake global state root - feat(rpc): add starknet_version and eth_l1_gas_fee on block header - fix(spec_version): spec version now returning 0.5.1 - chore: feature flags for avail and celestia DA @@ -45,6 +55,8 @@ - refactor: use `map` in `estimate_fee` to stop computation on error - fix: `tempdir` crate has been deprecated; use `tempfile` instead - dev: add avail and celestia crates behind a feature flag +- dev: replace md5 with sha3_256 hash function +- feat: fixing getNonce Rpc Call and adding a new test ## v0.6.0 diff --git a/Cargo.lock b/Cargo.lock index fcb39856c6..1bf15a73ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -77,7 +77,7 @@ version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.11", "once_cell", "version_check", ] @@ -89,7 +89,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01" dependencies = [ "cfg-if", - "getrandom 0.2.12", + "getrandom 0.2.11", "once_cell", "version_check", "zerocopy", @@ -538,7 +538,7 @@ version = "2.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6afaa937395a620e33dc6a742c593c01aced20aa376ffb0f628121198578ccc7" dependencies = [ - "async-lock 3.3.0", + "async-lock 3.2.0", "cfg-if", "concurrent-queue", "futures-io", @@ -562,11 +562,11 @@ dependencies = [ [[package]] name = "async-lock" -version = "3.3.0" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" +checksum = "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c" dependencies = [ - "event-listener 4.0.3", + "event-listener 4.0.2", "event-listener-strategy", "pin-project-lite 0.2.13", ] @@ -691,9 +691,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "base64" -version = "0.21.6" +version = "0.21.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c79fed4cdb43e993fcdadc7e58a09fd0e3e649c4436fa11da71c9f1f3ee7feb9" +checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" [[package]] name = "base64ct" @@ -768,9 +768,9 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.69.1" +version = "0.69.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2" +checksum = "a4c69fae65a523209d34240b60abe0c42d33d1045d445c0839d8a4894a736e2d" dependencies = [ "bitflags 2.4.1", "cexpr", @@ -923,7 +923,7 @@ dependencies = [ [[package]] name = "blockifier" version = "0.1.0-rc2" -source = "git+https://github.com/keep-starknet-strange/blockifier?branch=no_std-support-7578442#8270582205fb7c2fb81b7e2de1dc46cd9b483d83" +source = "git+https://github.com/keep-starknet-strange/blockifier?branch=no_std-support-7578442#48638f2bf136af194be9e645559032b6627c77bc" dependencies = [ "ark-ff", "ark-secp256k1", @@ -1757,9 +1757,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.14" +version = "4.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33e92c5c1a78c62968ec57dbc2440366a2d6e5a23faf829970ff1585dc6b18e2" +checksum = "52bdc885e4cacc7f7c9eedc1ef6da641603180c783c41a15c264944deeaab642" dependencies = [ "clap_builder", "clap_derive", @@ -1767,9 +1767,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.14" +version = "4.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4323769dc8a61e2c39ad7dc26f6f2800524691a44d74fe3d1071a5c24db6370" +checksum = "fb7fb5e4e979aec3be7791562fcba452f94ad85e954da024396433e0e25a79e9" dependencies = [ "anstream", "anstyle", @@ -1849,7 +1849,7 @@ version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5286a0843c21f8367f7be734f89df9b822e0321d8bcce8d6e735aadff7d74979" dependencies = [ - "base64 0.21.6", + "base64 0.21.5", "bech32", "bs58 0.5.0", "digest 0.10.7", @@ -1932,15 +1932,15 @@ dependencies = [ [[package]] name = "console" -version = "0.15.8" +version = "0.15.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" +checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" dependencies = [ "encode_unicode", "lazy_static", "libc", "unicode-width", - "windows-sys 0.52.0", + "windows-sys 0.45.0", ] [[package]] @@ -1983,7 +1983,7 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.11", "once_cell", "tiny-keccak", ] @@ -2063,7 +2063,7 @@ version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f01585027057ff5f0a5bf276174ae4c1594a2c5bde93d5f46a016d76270f5a9" dependencies = [ - "bindgen 0.69.1", + "bindgen 0.69.2", ] [[package]] @@ -2218,28 +2218,34 @@ dependencies = [ [[package]] name = "crossbeam-deque" -version = "0.8.5" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751" dependencies = [ + "cfg-if", "crossbeam-epoch", "crossbeam-utils", ] [[package]] name = "crossbeam-epoch" -version = "0.9.18" +version = "0.9.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d" dependencies = [ + "autocfg", + "cfg-if", "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.8.19" +version = "0.8.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" +checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c" +dependencies = [ + "cfg-if", +] [[package]] name = "crunchy" @@ -2365,9 +2371,9 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.115" +version = "1.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8de00f15a6fa069c99b88c5c78c4541d0e7899a33b86f7480e23df2431fce0bc" +checksum = "2ed3a27153f220bb42b96005947ca3b87266cfdae5b4b4d703642c3a565e9708" dependencies = [ "cc", "cxxbridge-flags", @@ -2377,9 +2383,9 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.115" +version = "1.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a71e1e631fa2f2f5f92e8b0d860a00c198c6771623a6cefcc863e3554f0d8d6" +checksum = "005721caedeb9869792e656d567695281c7e2bf2ac022d4ed95e5240b215f44d" dependencies = [ "cc", "codespan-reporting", @@ -2392,15 +2398,15 @@ dependencies = [ [[package]] name = "cxxbridge-flags" -version = "1.0.115" +version = "1.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f3fed61d56ba497c4efef9144dfdbaa25aa58f2f6b3a7cf441d4591c583745c" +checksum = "b6981d27196cca89f82c8a89fd495cca25066d2933c974e907f7c3699801e112" [[package]] name = "cxxbridge-macro" -version = "1.0.115" +version = "1.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8908e380a8efd42150c017b0cfa31509fc49b6d47f7cb6b33e93ffb8f4e3661e" +checksum = "ca7e7d41b675af76ee4844e8e4c1cec70b65555dbc4852eae7b11c9cd5525d60" dependencies = [ "proc-macro2", "quote", @@ -2501,7 +2507,6 @@ dependencies = [ "mc-rpc", "mc-settlement", "mc-storage", - "md5", "mockito", "mp-block", "mp-digest-log", @@ -2532,6 +2537,7 @@ dependencies = [ "sc-transaction-pool-api", "serde", "serde_json", + "sha3", "sp-api", "sp-block-builder", "sp-blockchain", @@ -2936,7 +2942,7 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe81b5c06ecfdbc71dd845216f225f53b62a10cb8a16c946836a3467f701d05b" dependencies = [ - "base64 0.21.6", + "base64 0.21.5", "bytes", "hex", "k256", @@ -3161,7 +3167,7 @@ dependencies = [ "ethabi", "generic-array 0.14.7", "k256", - "num_enum 0.7.2", + "num_enum 0.7.1", "once_cell", "open-fastrlp", "rand 0.8.5", @@ -3224,7 +3230,7 @@ source = "git+https://github.com/gakonst/ethers-rs?rev=f0e5b194f09c533feb10d1a68 dependencies = [ "async-trait", "auto_impl", - "base64 0.21.6", + "base64 0.21.5", "bytes", "const-hex", "enr", @@ -3310,9 +3316,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "4.0.3" +version = "4.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" +checksum = "218a870470cce1469024e9fb66b901aa983929d81304a1cdb299f28118e550d5" dependencies = [ "concurrent-queue", "parking", @@ -3325,7 +3331,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" dependencies = [ - "event-listener 4.0.3", + "event-listener 4.0.2", "pin-project-lite 0.2.13", ] @@ -3873,9 +3879,9 @@ checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" [[package]] name = "futures-lite" -version = "2.2.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" +checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143" dependencies = [ "futures-core", "pin-project-lite 0.2.13", @@ -4027,9 +4033,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.12" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" +checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" dependencies = [ "cfg-if", "js-sys", @@ -4119,9 +4125,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.23" +version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b553656127a00601c8ae5590fcfdc118e4083a7924b6cf4ffc1ea4b99dc429d7" +checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" dependencies = [ "bytes", "fnv", @@ -4218,7 +4224,7 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" dependencies = [ - "base64 0.21.6", + "base64 0.21.5", "bytes", "headers-core", "http", @@ -4763,6 +4769,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.10" @@ -4986,7 +5001,7 @@ version = "8.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" dependencies = [ - "base64 0.21.6", + "base64 0.21.5", "pem", "ring 0.16.20", "serde", @@ -4996,9 +5011,9 @@ dependencies = [ [[package]] name = "k256" -version = "0.13.3" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" +checksum = "3f01b677d82ef7a676aa37e099defd83a28e15687112cafdd112d60236b6115b" dependencies = [ "cfg-if", "ecdsa", @@ -5116,9 +5131,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.152" +version = "0.2.151" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" +checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" [[package]] name = "libloading" @@ -5145,7 +5160,7 @@ dependencies = [ "bytes", "futures", "futures-timer", - "getrandom 0.2.12", + "getrandom 0.2.11", "instant", "libp2p-allow-block-list", "libp2p-connection-limits", @@ -5605,9 +5620,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.14" +version = "1.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "295c17e837573c8c821dbaeb3cceb3d745ad082f7572191409e69cbc1b3fd050" +checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" dependencies = [ "cc", "pkg-config", @@ -5814,6 +5829,7 @@ dependencies = [ "frame-try-runtime", "mp-block", "mp-chain-id", + "mp-fee", "mp-felt", "mp-hashers", "mp-program-hash", @@ -5898,7 +5914,7 @@ dependencies = [ "futures", "indexmap 2.0.0-pre", "log", - "mp-commitments", + "mc-db", "mp-digest-log", "mp-felt", "mp-hashers", @@ -6044,6 +6060,7 @@ dependencies = [ "frame-support", "frame-system", "hex", + "itertools 0.12.0", "jsonrpsee", "log", "mc-db", @@ -6124,6 +6141,7 @@ dependencies = [ "futures", "futures-timer", "log", + "mc-db", "mp-block", "mp-digest-log", "mp-felt", @@ -6181,12 +6199,6 @@ dependencies = [ "digest 0.10.7", ] -[[package]] -name = "md5" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" - [[package]] name = "memchr" version = "2.7.1" @@ -6517,17 +6529,9 @@ dependencies = [ name = "mp-simulations" version = "0.1.0" dependencies = [ - "blockifier", - "mp-felt", - "mp-messages", - "mp-state", - "mp-transactions", "parity-scale-codec", "scale-info", - "serde", - "serde_with", "starknet-core", - "starknet_api", ] [[package]] @@ -7024,11 +7028,11 @@ dependencies = [ [[package]] name = "num_enum" -version = "0.7.2" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" +checksum = "683751d591e6d81200c39fb0d1032608b77724f34114db54f571ff1317b337c0" dependencies = [ - "num_enum_derive 0.7.2", + "num_enum_derive 0.7.1", ] [[package]] @@ -7045,11 +7049,11 @@ dependencies = [ [[package]] name = "num_enum_derive" -version = "0.7.2" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" +checksum = "6c11e44798ad209ccdd91fc192f0526a369a01234f7373e1b141c96d7cee4f0e" dependencies = [ - "proc-macro-crate 3.0.0", + "proc-macro-crate 2.0.0", "proc-macro2", "quote", "syn 2.0.48", @@ -7930,15 +7934,6 @@ dependencies = [ "toml_edit 0.20.7", ] -[[package]] -name = "proc-macro-crate" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b2685dd208a3771337d8d386a89840f0f43cd68be8dae90a5f8c2384effc9cd" -dependencies = [ - "toml_edit 0.21.0", -] - [[package]] name = "proc-macro-error" version = "1.0.4" @@ -7976,9 +7971,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.76" +version = "1.0.75" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" +checksum = "907a61bd0f64c2f29cd1cf1dc34d05176426a3f504a78010f08416ddb7b13708" dependencies = [ "unicode-ident", ] @@ -8236,7 +8231,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.11", ] [[package]] @@ -8344,7 +8339,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.11", "libredox", "thiserror", ] @@ -8443,7 +8438,7 @@ version = "0.11.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" dependencies = [ - "base64 0.21.6", + "base64 0.21.5", "bytes", "encoding_rs", "futures-core", @@ -8538,7 +8533,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" dependencies = [ "cc", - "getrandom 0.2.12", + "getrandom 0.2.11", "libc", "spin 0.9.8", "untrusted 0.9.0", @@ -8769,7 +8764,7 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ - "base64 0.21.6", + "base64 0.21.5", ] [[package]] @@ -10080,18 +10075,18 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" [[package]] name = "serde" -version = "1.0.195" +version = "1.0.194" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02" +checksum = "0b114498256798c94a0689e1a15fec6005dee8ac1f41de56404b67afc2a4b773" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.195" +version = "1.0.194" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c" +checksum = "a3385e45322e8f9931410f01b3031ec534c3947d0e94c18049af4d9f9907d4e0" dependencies = [ "proc-macro2", "quote", @@ -11142,9 +11137,9 @@ dependencies = [ [[package]] name = "ss58-registry" -version = "1.45.0" +version = "1.44.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c0c74081753a8ce1c8eb10b9f262ab6f7017e5ad3317c17a54c7ab65fcb3c6e" +checksum = "35935738370302d5e33963665b77541e4b990a3e919ec904c837a56cfc891de1" dependencies = [ "Inflector", "num-format", @@ -11166,7 +11161,7 @@ name = "starknet-core" version = "0.8.0" source = "git+https://github.com/xJonathanLEI/starknet-rs.git?rev=95d50ac#95d50ac0a3a537cb63a390bad818415899c90693" dependencies = [ - "base64 0.21.6", + "base64 0.21.5", "flate2", "hex", "serde", @@ -11295,7 +11290,7 @@ source = "git+https://github.com/xJonathanLEI/starknet-rs.git?rev=64ebc36#64ebc3 dependencies = [ "ark-ff", "crypto-bigint", - "getrandom 0.2.12", + "getrandom 0.2.11", "hex", ] @@ -11307,7 +11302,7 @@ dependencies = [ "ark-ff", "bigdecimal", "crypto-bigint", - "getrandom 0.2.12", + "getrandom 0.2.11", "hex", "serde", ] @@ -11319,7 +11314,7 @@ source = "git+https://github.com/xJonathanLEI/starknet-rs.git?rev=a35ce22#a35ce2 dependencies = [ "ark-ff", "crypto-bigint", - "getrandom 0.2.12", + "getrandom 0.2.11", "hex", ] @@ -11714,9 +11709,9 @@ dependencies = [ [[package]] name = "termcolor" -version = "1.4.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" +checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" dependencies = [ "winapi-util", ] @@ -12509,7 +12504,7 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.11", "serde", ] @@ -12821,7 +12816,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c86437fa68626fe896e5afc69234bb2b5894949083586535f200385adfd71213" dependencies = [ "anyhow", - "base64 0.21.6", + "base64 0.21.5", "bincode 1.3.3", "directories-next", "file-per-thread-logger", @@ -12989,7 +12984,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5388522c899d1e1c96a4c307e3797e0f697ba7c77dd8e0e625ecba9dd0342937" dependencies = [ "arrayvec 0.7.4", - "base64 0.21.6", + "base64 0.21.5", "bytes", "derive_more", "ethabi", @@ -13351,9 +13346,9 @@ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" [[package]] name = "winnow" -version = "0.5.34" +version = "0.5.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7cf47b659b318dccbd69cc4797a39ae128f533dce7902a1096044d1967b9c16" +checksum = "8434aeec7b290e8da5c3f0d628cb0eac6cabcb31d14bb74f779a08109a5914d6" dependencies = [ "memchr", ] diff --git a/Cargo.toml b/Cargo.toml index 27e0d10e47..8df8507662 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,6 @@ members = [ "crates/primitives/block", "crates/primitives/sequencer-address", "crates/primitives/storage", - "crates/primitives/commitments", "crates/primitives/chain-id", "crates/primitives/messages", "crates/primitives/program-hash", @@ -47,10 +46,10 @@ default-members = [ "crates/primitives/block", "crates/primitives/sequencer-address", "crates/primitives/storage", - "crates/primitives/commitments", "crates/primitives/chain-id", "crates/primitives/messages", "crates/primitives/program-hash", + "crates/primitives/commitments", "crates/client/genesis-data-provider", "crates/client/db", "crates/client/rpc-core", @@ -174,11 +173,11 @@ mp-snos-output = { path = "crates/primitives/snos-output", default-features = fa mp-state = { path = "crates/primitives/state", default-features = false } mp-storage = { path = "crates/primitives/storage", default-features = false } mp-transactions = { path = "crates/primitives/transactions", default-features = false } -mp-commitments = { path = "crates/primitives/commitments", default-features = false } mp-chain-id = { path = "crates/primitives/chain-id", default-features = false } mp-simulations = { path = "crates/primitives/simulations", default-features = false } mp-program-hash = { path = "crates/primitives/program-hash", default-features = false } mp-messages = { path = "crates/primitives/messages", default-features = false } +mp-commitments = { path = "crates/primitives/commitments", default-features = false } # Madara client mc-genesis-data-provider = { path = "crates/client/genesis-data-provider" } @@ -240,7 +239,7 @@ jsonrpsee = { version = "0.16.3", default-features = false } clap = { version = "4.4.8", default-features = false } futures = { version = "0.3.29", default-features = false } futures-timer = { version = "3.0.2", default-features = false } -md5 = { version = "0.7.0", default-features = false } +sha3 = { version = "0.10.8", default-features = false } reqwest = { version = "0.11.22", default-features = false } serde = { version = "1.0.192", default-features = false } serde_json = { version = "1.0.108", default-features = false } @@ -273,7 +272,6 @@ rand_chacha = "0.3.1" tokio-retry = "0.3" tracing = "0.1.37" assert = "0.0.4" -itertools = "0.10.5" strum_macros = "0.25.2" tempfile = "3.3.0" async-stream = "0.3.3" @@ -299,7 +297,6 @@ regex = "1.9.0" rustc-hex = "2.1.0" schemars = "0.8.12" serde_yaml = "0.9.16" -sha3 = "0.10.8" simple_logger = "4.0.0" strum = "0.25.0" tokio-stream = "0.1.8" @@ -311,6 +308,7 @@ tokio = "1.34.0" openssl = { version = "0.10", features = ["vendored"] } subxt = "0.29" async-lock = "3.1.0" +itertools = "0.12.0" [patch."https://github.com/w3f/ring-vrf"] bandersnatch_vrfs = { git = "https://github.com/w3f/ring-vrf?rev=3ddc20", version = "0.0.4", rev = "3ddc20" } diff --git a/Dockerfile b/Dockerfile index a482aac2ee..dfd318b94a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,7 @@ COPY --from=builder /madara/target/release/madara /madara-bin RUN apt-get -y update; \ apt-get install -y --no-install-recommends \ curl; \ + apt-get install -y ca-certificates; \ apt-get autoremove -y; \ apt-get clean; \ rm -rf /var/lib/apt/lists/* diff --git a/configs/genesis-assets/BraavosAccount.json b/configs/genesis-assets/BraavosAccount.json new file mode 100644 index 0000000000..f0edc2b907 --- /dev/null +++ b/configs/genesis-assets/BraavosAccount.json @@ -0,0 +1,236308 @@ +{ + "abi": [ + { + "members": [ + { + "name": "expire_at", + "offset": 0, + "type": "felt" + }, + { + "name": "signer_id", + "offset": 1, + "type": "felt" + } + ], + "name": "DeferredRemoveSignerRequest", + "size": 2, + "type": "struct" + }, + { + "members": [ + { + "name": "signer_0", + "offset": 0, + "type": "felt" + }, + { + "name": "signer_1", + "offset": 1, + "type": "felt" + }, + { + "name": "signer_2", + "offset": 2, + "type": "felt" + }, + { + "name": "signer_3", + "offset": 3, + "type": "felt" + }, + { + "name": "type", + "offset": 4, + "type": "felt" + }, + { + "name": "reserved_0", + "offset": 5, + "type": "felt" + }, + { + "name": "reserved_1", + "offset": 6, + "type": "felt" + } + ], + "name": "SignerModel", + "size": 7, + "type": "struct" + }, + { + "members": [ + { + "name": "expire_at", + "offset": 0, + "type": "felt" + } + ], + "name": "DeferredMultisigDisableRequest", + "size": 1, + "type": "struct" + }, + { + "members": [ + { + "name": "index", + "offset": 0, + "type": "felt" + }, + { + "name": "signer", + "offset": 1, + "type": "SignerModel" + } + ], + "name": "IndexedSignerModel", + "size": 8, + "type": "struct" + }, + { + "members": [ + { + "name": "transaction_hash", + "offset": 0, + "type": "felt" + }, + { + "name": "expire_at_sec", + "offset": 1, + "type": "felt" + }, + { + "name": "expire_at_block_num", + "offset": 2, + "type": "felt" + }, + { + "name": "signer_1_id", + "offset": 3, + "type": "felt" + }, + { + "name": "is_disable_multisig_transaction", + "offset": 4, + "type": "felt" + } + ], + "name": "PendingMultisigTransaction", + "size": 5, + "type": "struct" + }, + { + "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" + }, + { + "data": [ + { + "name": "implementation", + "type": "felt" + } + ], + "keys": [], + "name": "Upgraded", + "type": "event" + }, + { + "data": [ + { + "name": "request", + "type": "DeferredRemoveSignerRequest" + } + ], + "keys": [], + "name": "SignerRemoveRequest", + "type": "event" + }, + { + "data": [ + { + "name": "signer_id", + "type": "felt" + }, + { + "name": "signer", + "type": "SignerModel" + } + ], + "keys": [], + "name": "SignerAdded", + "type": "event" + }, + { + "data": [ + { + "name": "signer_id", + "type": "felt" + } + ], + "keys": [], + "name": "SignerRemoved", + "type": "event" + }, + { + "data": [ + { + "name": "request", + "type": "DeferredRemoveSignerRequest" + } + ], + "keys": [], + "name": "SignerRemoveRequestCancelled", + "type": "event" + }, + { + "data": [ + { + "name": "public_key", + "type": "felt" + } + ], + "keys": [], + "name": "AccountInitialized", + "type": "event" + }, + { + "data": [ + { + "name": "request", + "type": "DeferredMultisigDisableRequest" + } + ], + "keys": [], + "name": "MultisigDisableRequest", + "type": "event" + }, + { + "data": [ + { + "name": "request", + "type": "DeferredMultisigDisableRequest" + } + ], + "keys": [], + "name": "MultisigDisableRequestCancelled", + "type": "event" + }, + { + "data": [ + { + "name": "num_signers", + "type": "felt" + } + ], + "keys": [], + "name": "MultisigSet", + "type": "event" + }, + { + "data": [], + "keys": [], + "name": "MultisigDisabled", + "type": "event" + }, + { + "inputs": [ + { + "name": "interfaceId", + "type": "felt" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "get_impl_version", + "outputs": [ + { + "name": "res", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "public_key", + "type": "felt" + } + ], + "name": "initializer", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "new_implementation", + "type": "felt" + } + ], + "name": "upgrade", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "from_version", + "type": "felt" + } + ], + "name": "migrate_storage", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "signer", + "type": "SignerModel" + } + ], + "name": "add_signer", + "outputs": [ + { + "name": "signer_id", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "remove_index", + "type": "felt" + }, + { + "name": "added_signer", + "type": "SignerModel" + } + ], + "name": "swap_signers", + "outputs": [ + { + "name": "signer_id", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "newPublicKey", + "type": "felt" + } + ], + "name": "setPublicKey", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "index", + "type": "felt" + } + ], + "name": "remove_signer", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "index", + "type": "felt" + } + ], + "name": "remove_signer_with_etd", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "removed_signer_id", + "type": "felt" + } + ], + "name": "cancel_deferred_remove_signer_req", + "outputs": [], + "type": "function" + }, + { + "inputs": [], + "name": "getPublicKey", + "outputs": [ + { + "name": "publicKey", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "get_public_key", + "outputs": [ + { + "name": "res", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "get_signers", + "outputs": [ + { + "name": "signers_len", + "type": "felt" + }, + { + "name": "signers", + "type": "IndexedSignerModel*" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "index", + "type": "felt" + } + ], + "name": "get_signer", + "outputs": [ + { + "name": "signer", + "type": "SignerModel" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "get_deferred_remove_signer_req", + "outputs": [ + { + "name": "deferred_request", + "type": "DeferredRemoveSignerRequest" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "get_execution_time_delay", + "outputs": [ + { + "name": "etd_sec", + "type": "felt" + } + ], + "stateMutability": "view", + "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": "hash", + "type": "felt" + }, + { + "name": "signature_len", + "type": "felt" + }, + { + "name": "signature", + "type": "felt*" + } + ], + "name": "isValidSignature", + "outputs": [ + { + "name": "isValid", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "get_multisig", + "outputs": [ + { + "name": "multisig_num_signers", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "num_signers", + "type": "felt" + } + ], + "name": "set_multisig", + "outputs": [], + "type": "function" + }, + { + "inputs": [], + "name": "get_pending_multisig_transaction", + "outputs": [ + { + "name": "pending_multisig_transaction", + "type": "PendingMultisigTransaction" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "pending_calldata_len", + "type": "felt" + }, + { + "name": "pending_calldata", + "type": "felt*" + }, + { + "name": "pending_nonce", + "type": "felt" + }, + { + "name": "pending_max_fee", + "type": "felt" + }, + { + "name": "pending_transaction_version", + "type": "felt" + } + ], + "name": "sign_pending_multisig_transaction", + "outputs": [ + { + "name": "response_len", + "type": "felt" + }, + { + "name": "response", + "type": "felt*" + } + ], + "type": "function" + }, + { + "inputs": [], + "name": "disable_multisig", + "outputs": [], + "type": "function" + }, + { + "inputs": [], + "name": "disable_multisig_with_etd", + "outputs": [], + "type": "function" + }, + { + "inputs": [], + "name": "get_deferred_disable_multisig_req", + "outputs": [ + { + "name": "deferred_request", + "type": "DeferredMultisigDisableRequest" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "cancel_deferred_disable_multisig_req", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "call_array_len", + "type": "felt" + }, + { + "name": "call_array", + "type": "AccountCallArray*" + }, + { + "name": "calldata_len", + "type": "felt" + }, + { + "name": "calldata", + "type": "felt*" + } + ], + "name": "__validate__", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "class_hash", + "type": "felt" + }, + { + "name": "contract_address_salt", + "type": "felt" + }, + { + "name": "implementation_address", + "type": "felt" + }, + { + "name": "initializer_selector", + "type": "felt" + }, + { + "name": "calldata_len", + "type": "felt" + }, + { + "name": "calldata", + "type": "felt*" + } + ], + "name": "__validate_deploy__", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "class_hash", + "type": "felt" + } + ], + "name": "__validate_declare__", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "call_array_len", + "type": "felt" + }, + { + "name": "call_array", + "type": "AccountCallArray*" + }, + { + "name": "calldata_len", + "type": "felt" + }, + { + "name": "calldata", + "type": "felt*" + } + ], + "name": "__execute__", + "outputs": [ + { + "name": "response_len", + "type": "felt" + }, + { + "name": "response", + "type": "felt*" + } + ], + "type": "function" + } + ], + "entry_points_by_type": { + "CONSTRUCTOR": [], + "EXTERNAL": [ + { + "offset": "0x1e5c", + "selector": "0x1571d27a81bc6d17ce703148816bbcea53a81e1d71dbcd697641a1699d54e" + }, + { + "offset": "0x1b3f", + "selector": "0x5c587631625b8e19617cebe376ee17e070ca15615606aaad48d9afae7823ad" + }, + { + "offset": "0x1e25", + "selector": "0x62f0f079150229a3c219f0376be202b702e9e0093829041102853cd07963c0" + }, + { + "offset": "0x1d69", + "selector": "0x8ecc24129a28742eec6f7c635e8eddcb9cb588e6eca0e4698534fa3678754b" + }, + { + "offset": "0x1bfa", + "selector": "0x98a7a395620cacd35f6494a58933edd8ffd7a61081ad2e05f3023a8017c5e9" + }, + { + "offset": "0x1b79", + "selector": "0xabc1803b5b2253a8896695a5c9f6a8bd3f36e4a9d9a7ec2de67fdd4a9ff063" + }, + { + "offset": "0x1b9e", + "selector": "0xbc0eb87884ab91e330445c3584a50d7ddf4b568f02fbeb456a6242cce3f5d9" + }, + { + "offset": "0x1abf", + "selector": "0xc8f66e480c0bc9ab679d6a65536cd4fcb2e0694287a34b53632462957d1fdc" + }, + { + "offset": "0x1bbc", + "selector": "0xe7a2429dd8755b8450ddd7c3c697c5d6a66c53c06b7186e125956a370cab96" + }, + { + "offset": "0x1dae", + "selector": "0xf2b9091012018788c1c6b4c5d66a0bb2b5e8d818f97e0f460f94fcdf49fee5" + }, + { + "offset": "0x1af8", + "selector": "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd" + }, + { + "offset": "0x1c9d", + "selector": "0xf61a8b8e15155ea3d0e1ca54ed317967796991fb1679df36ab9f60c5713e43" + }, + { + "offset": "0x1b14", + "selector": "0x12776a647d4f1a00968b94506ca4f11d94dce59f1c0176d42b47799b3a7f709" + }, + { + "offset": "0x1f7c", + "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad" + }, + { + "offset": "0x1eb4", + "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775" + }, + { + "offset": "0x1dde", + "selector": "0x1a256b309f5305c9cebef13e453384c78753c556a1b339faddc674a1950d228" + }, + { + "offset": "0x1c43", + "selector": "0x1a35984e05126dbecb7c3bb9929e7dd9106d460c59b1633739a5c733a5fb13b" + }, + { + "offset": "0x1c24", + "selector": "0x1a6c6a0bdec86cc645c91997d8eea83e87148659e3e61122f72361fd5e94079" + }, + { + "offset": "0x1e44", + "selector": "0x1fc603e4ad7a43f6c0680594c5fbc82d5f61ac28e3d6d118194e10c36363089" + }, + { + "offset": "0x1d3c", + "selector": "0x213dfe25e2ca309c4d615a09cfc95fdb2fc7dc73fbcad12c450fe93b1f2ff9e" + }, + { + "offset": "0x1d88", + "selector": "0x22a3e5c01dfd7aeab4f82e385c3a21119dedcccdc756ac64af2a4ac7bcb9af2" + }, + { + "offset": "0x1d04", + "selector": "0x28420862938116cb3bbdbedee07451ccc54d4e9412dbef71142ad1980a30941" + }, + { + "offset": "0x1f2c", + "selector": "0x289da278a8dc833409cabfdad1581e8e7d40e42dcaed693fa4008dcdb4963b3" + }, + { + "offset": "0x1a9d", + "selector": "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd" + }, + { + "offset": "0x1bde", + "selector": "0x2a13a0b91834446212a97be74b73d17ad114b3a82b46ecd87804f9f0b6d16b1" + }, + { + "offset": "0x1c71", + "selector": "0x2b8faca80de28f81027b46c4f3cb534c44616e721ae9f1e96539c6b54a1d932" + }, + { + "offset": "0x1adc", + "selector": "0x2dd76e7ad84dbed81c314ffe5e7a7cacfb8f4836f01af4e913f275f89a3de1a" + }, + { + "offset": "0x1cc0", + "selector": "0x2f3a5c59ecccbf6932f740d08e4258c192c102454aebd13817238da7c8dbf43" + }, + { + "offset": "0x1eed", + "selector": "0x36fcbf06cd96843058359e1a75928beacfac10727dab22a3972f0af8aa92895" + }, + { + "offset": "0x1ce1", + "selector": "0x3968a75e84a7516e60c5d9ce223fb0669b314df7769a4030cb7d5163c1d6d8e" + }, + { + "offset": "0x1e0b", + "selector": "0x3e323c0a0275e3c845497c9c36ee72a77e10bc5178889309854b99d7e5838e7" + } + ], + "L1_HANDLER": [] + }, + "program": { + "attributes": [ + { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "end_pc": 433, + "flow_tracking_data": { + "ap_tracking": { + "group": 37, + "offset": 23 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 431, + "value": "Proxy: contract already initialized" + }, + { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "end_pc": 468, + "flow_tracking_data": { + "ap_tracking": { + "group": 39, + "offset": 29 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 467, + "value": "Proxy: caller is not admin" + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "end_pc": 3938, + "flow_tracking_data": { + "ap_tracking": { + "group": 125, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 3927, + "value": "Signature out of range." + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "end_pc": 3994, + "flow_tracking_data": { + "ap_tracking": { + "group": 127, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 3938, + "value": "Invalid signature." + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "end_pc": 4438, + "flow_tracking_data": { + "ap_tracking": { + "group": 154, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4422, + "value": "Signers: can only add 1 secp256r1 signer" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "end_pc": 4464, + "flow_tracking_data": { + "ap_tracking": { + "group": 154, + "offset": 45 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4438, + "value": "Signers: invalid secp256r1 signer" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "end_pc": 4529, + "flow_tracking_data": { + "ap_tracking": { + "group": 156, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4519, + "value": "Signers: can only swap secp256r1 signers using a secp256r1 signer" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "end_pc": 4534, + "flow_tracking_data": { + "ap_tracking": { + "group": 156, + "offset": 7 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4529, + "value": "Signers: cannot remove signer 0" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "end_pc": 4542, + "flow_tracking_data": { + "ap_tracking": { + "group": 156, + "offset": 121 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4540, + "value": "Signers: swap only supported for secp256r1 signer" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "end_pc": 4563, + "flow_tracking_data": { + "ap_tracking": { + "group": 158, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4558, + "value": "Signers: cannot remove signer 0" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "end_pc": 4635, + "flow_tracking_data": { + "ap_tracking": { + "group": 160, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4630, + "value": "Signers: cannot remove signer 0" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "end_pc": 4643, + "flow_tracking_data": { + "ap_tracking": { + "group": 160, + "offset": 114 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4641, + "value": "Signers: tried removing invalid signer" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "end_pc": 4655, + "flow_tracking_data": { + "ap_tracking": { + "group": 161, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4653, + "value": "Signers: remove_signer_with_etd should be called with seed signer" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "end_pc": 4662, + "flow_tracking_data": { + "ap_tracking": { + "group": 161, + "offset": 31 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4660, + "value": "Signers: already have a pending remove signer request" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "end_pc": 4668, + "flow_tracking_data": { + "ap_tracking": { + "group": 161, + "offset": 37 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4665, + "value": "Signers: etd not initialized" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "end_pc": 4700, + "flow_tracking_data": { + "ap_tracking": { + "group": 163, + "offset": 31 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4696, + "value": "Signers: invalid remove signer request to cancel" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "end_pc": 4830, + "flow_tracking_data": { + "ap_tracking": { + "group": 168, + "offset": 33 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4819, + "value": "Signers: invalid signature" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "end_pc": 4874, + "flow_tracking_data": { + "ap_tracking": { + "group": 170, + "offset": 161 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4872, + "value": "Signers: either secp256r1 or seed signers are expected" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "end_pc": 4877, + "flow_tracking_data": { + "ap_tracking": { + "group": 170, + "offset": 161 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4874, + "value": "Signers: invalid entry point for seed signing" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "end_pc": 4879, + "flow_tracking_data": { + "ap_tracking": { + "group": 170, + "offset": 161 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4877, + "value": "Signers: only a single call is allowed with seed signing" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "end_pc": 4994, + "flow_tracking_data": { + "ap_tracking": { + "group": 174, + "offset": 111 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 4992, + "value": "Signers: Invalid signature length" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "end_pc": 5019, + "flow_tracking_data": { + "ap_tracking": { + "group": 174, + "offset": 112 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 5017, + "value": "Signers: Invalid signature length" + }, + { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "end_pc": 5047, + "flow_tracking_data": { + "ap_tracking": { + "group": 174, + "offset": 112 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 5043, + "value": "Signers: unsupported signer type" + }, + { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "end_pc": 5308, + "flow_tracking_data": { + "ap_tracking": { + "group": 191, + "offset": 52 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 5305, + "value": "Account: Implementation does not support IACCOUNT_ID" + }, + { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "end_pc": 5351, + "flow_tracking_data": { + "ap_tracking": { + "group": 192, + "offset": 22 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 5340, + "value": "Account: upgrade data migration failed" + }, + { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "end_pc": 5509, + "flow_tracking_data": { + "ap_tracking": { + "group": 196, + "offset": 1 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 5366, + "value": "Account: multicall with subsequent call to self" + }, + { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "end_pc": 5572, + "flow_tracking_data": { + "ap_tracking": { + "group": 202, + "offset": 23 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 5570, + "value": "Account: account upgraded without migration" + }, + { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "end_pc": 5624, + "flow_tracking_data": { + "ap_tracking": { + "group": 203, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 5622, + "value": "Account: missing parameters in initializer signature" + }, + { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "end_pc": 5703, + "flow_tracking_data": { + "ap_tracking": { + "group": 205, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 5698, + "value": "Account: no calls provided" + }, + { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "end_pc": 6124, + "flow_tracking_data": { + "ap_tracking": { + "group": 238, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6122, + "value": "Multisig: multisig currently supports 2 signers only" + }, + { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "end_pc": 6126, + "flow_tracking_data": { + "ap_tracking": { + "group": 238, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6124, + "value": "Multisig: multisig can only be set if account have additional signers" + }, + { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "end_pc": 6133, + "flow_tracking_data": { + "ap_tracking": { + "group": 238, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6126, + "value": "Multisig: multisig was already set" + }, + { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "end_pc": 6305, + "flow_tracking_data": { + "ap_tracking": { + "group": 243, + "offset": 121 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6299, + "value": "Multisig: no pending multisig transaction" + }, + { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "end_pc": 6331, + "flow_tracking_data": { + "ap_tracking": { + "group": 244, + "offset": 128 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6325, + "value": "Multisig: multisig signer can only sign once" + }, + { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "end_pc": 6355, + "flow_tracking_data": { + "ap_tracking": { + "group": 245, + "offset": 13 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6339, + "value": "Multisig: multisig invalid hash" + }, + { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "end_pc": 6502, + "flow_tracking_data": { + "ap_tracking": { + "group": 253, + "offset": 134 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6500, + "value": "Multisig: disable_multisig_with_etd should be called with seed signer" + }, + { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "end_pc": 6509, + "flow_tracking_data": { + "ap_tracking": { + "group": 253, + "offset": 157 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6507, + "value": "Multisig: already have a pending disable multisig request" + }, + { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "end_pc": 6515, + "flow_tracking_data": { + "ap_tracking": { + "group": 253, + "offset": 163 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6512, + "value": "Multisig: etd not initialized" + }, + { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "end_pc": 6543, + "flow_tracking_data": { + "ap_tracking": { + "group": 255, + "offset": 23 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6541, + "value": "Multisig: no deferred disable multisig req" + }, + { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "end_pc": 6760, + "flow_tracking_data": { + "ap_tracking": { + "group": 260, + "offset": 138 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6748, + "value": "Multisig: invalid entry point for seed signing" + }, + { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_only_self" + ], + "end_pc": 6776, + "flow_tracking_data": { + "ap_tracking": { + "group": 262, + "offset": 12 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6775, + "value": "Guards: caller is not this account" + }, + { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_no_reentrance" + ], + "end_pc": 6783, + "flow_tracking_data": { + "ap_tracking": { + "group": 263, + "offset": 6 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6781, + "value": "Guards: no reentrant call" + }, + { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_valid_transaction_version" + ], + "end_pc": 6795, + "flow_tracking_data": { + "ap_tracking": { + "group": 264, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 6785, + "value": "Please Upgrade Wallet app. Invalid transaction version." + }, + { + "accessible_scopes": ["__main__", "__main__", "__main__.setPublicKey"], + "end_pc": 7066, + "flow_tracking_data": { + "ap_tracking": { + "group": 291, + "offset": 16 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 7062, + "value": "Account: setPublicKey is not supported" + }, + { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "end_pc": 7963, + "flow_tracking_data": { + "ap_tracking": { + "group": 380, + "offset": 46 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 7960, + "value": "Account: declare not supported in non-seed modes" + }, + { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "end_pc": 7975, + "flow_tracking_data": { + "ap_tracking": { + "group": 380, + "offset": 53 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 7966, + "value": "Account: declare invalid signature" + } + ], + "builtins": ["pedersen", "range_check", "ecdsa"], + "compiler_version": "0.10.3", + "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", + "0x1104800180018000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x482480017ffe8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffd", + "0x4", + "0x400780017fff7ffd", + "0x1", + "0x208b7fff7fff7ffe", + "0x48297ffd80007ffc", + "0x20680017fff7fff", + "0x4", + "0x402780017ffc7ffc", + "0x1", + "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", + "0x480280017ffc8000", + "0x484480017fff8000", + "0x100000000000000000000000000000000", + "0x480280007ffc8000", + "0x40317fff7ffe7ffd", + "0x480280017ffc8000", + "0x482480017fff8000", + "0x800000000000010fffffffffffffffff7ffffffffffffef0000000000000001", + "0x20680017fff7fff", + "0xb", + "0x482680017ffc8000", + "0x2", + "0x480280007ffc8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", + "0x10780017fff7fff", + "0x9", + "0x482680017ffc8000", + "0x2", + "0x480280017ffc8000", + "0x480680017fff8000", + "0x800000000000010ffffffffffffffff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffce", + "0x480280017ffc8000", + "0x480280007ffc8000", + "0x208b7fff7fff7ffe", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x484480017fff8000", + "0x2aaaaaaaaaaaab05555555555555556", + "0x48307fff7ffd8000", + "0x480280027ffb8000", + "0x480280037ffb8000", + "0x484480017fff8000", + "0x4000000000000088000000000000001", + "0x48307fff7ffd8000", + "0xa0680017fff8000", + "0xe", + "0x480680017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48287ffc80007fff", + "0x40307ffc7ff87fff", + "0x48297ffd80007ffc", + "0x482680017ffd8000", + "0x1", + "0x48507fff7ffe8000", + "0x40507ff97ff57fff", + "0x482680017ffb8000", + "0x4", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0xc", + "0x480680017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48287ffd80007fff", + "0x48327fff7ffc8000", + "0x40307ffa7ff67fff", + "0x48527ffe7ffc8000", + "0x40507ff97ff57fff", + "0x482680017ffb8000", + "0x4", + "0x208b7fff7fff7ffe", + "0x40317ffd7ff97ffd", + "0x48297ffc80007ffd", + "0x48527fff7ffc8000", + "0x40507ffb7ff77fff", + "0x40780017fff7fff", + "0x2", + "0x482680017ffb8000", + "0x4", + "0x208b7fff7fff7ffe", + "0x48297ffd80007ffc", + "0x20680017fff7fff", + "0x4", + "0x402780017ffc7ffc", + "0x1", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcc", + "0x208b7fff7fff7ffe", + "0x482680017ffb8000", + "0x2", + "0x480280007ffb8000", + "0x482680017ffd8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff8c", + "0x480280017ffb8000", + "0x48487ffd7fff8000", + "0x480280007ffb8000", + "0x40317fff7ffe7ffc", + "0x48127ffc7fff8000", + "0x480280017ffb8000", + "0x480280007ffb8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x20680017fff7fff", + "0x10", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x11000000000000000000000000000000000000000000000101", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff89", + "0x480680017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48127ffe7fff8000", + "0x48287ffd80007ffe", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff83", + "0x482680017ffd8000", + "0x11000000000000000000000000000000000000000000000101", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x20680017fff7fff", + "0xc", + "0x40780017fff7fff", + "0xa", + "0x480680017fff8000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeff", + "0x480a7ffc7fff8000", + "0x48287ffd80007ffe", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff74", + "0x10780017fff7fff", + "0x8", + "0x40780017fff7fff", + "0xb", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6c", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x43616c6c436f6e7472616374", + "0x400280007ff97fff", + "0x400380017ff97ffa", + "0x400380027ff97ffb", + "0x400380037ff97ffc", + "0x400380047ff97ffd", + "0x482680017ff98000", + "0x7", + "0x480280057ff98000", + "0x480280067ff98000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x4c69627261727943616c6c", + "0x400280007ff97fff", + "0x400380017ff97ffa", + "0x400380027ff97ffb", + "0x400380037ff97ffc", + "0x400380047ff97ffd", + "0x482680017ff98000", + "0x7", + "0x480280057ff98000", + "0x480280067ff98000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x47657443616c6c657241646472657373", + "0x400280007ffd7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x476574426c6f636b4e756d626572", + "0x400280007ffd7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x476574436f6e747261637441646472657373", + "0x400280007ffd7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x476574426c6f636b54696d657374616d70", + "0x400280007ffd7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x53746f7261676552656164", + "0x400280007ffc7fff", + "0x400380017ffc7ffd", + "0x482680017ffc8000", + "0x3", + "0x480280027ffc8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x53746f726167655772697465", + "0x400280007ffb7fff", + "0x400380017ffb7ffc", + "0x400380027ffb7ffd", + "0x482680017ffb8000", + "0x3", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x456d69744576656e74", + "0x400280007ff97fff", + "0x400380017ff97ffa", + "0x400380027ff97ffb", + "0x400380037ff97ffc", + "0x400380047ff97ffd", + "0x482680017ff98000", + "0x5", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x4765745478496e666f", + "0x400280007ffd7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffd", + "0x5", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0xc", + "0x40780017fff7fff", + "0x6", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff2e", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffd7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff53", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeba", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb4", + "0x40137fff7fff8001", + "0x4003800080017ffd", + "0x4826800180018000", + "0x1", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc0", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x3ad34fad732b51fe0d1a1350f149f21a0cf14a9382c9c6e7b262c4e0c8dbf18", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa8", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0xee2b6c840729051a0d06a623ff093dcc01e03f2e0c0e07114ac2440394b889", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff90", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff8a", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x387c153462d309d4b5a1fc5f90e85bc59eeb2094b2fcef46513ea5f1d1c9b85", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff72", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6c", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe5", + "0x400680017fff7fff", + "0x0", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe9", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc8", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa3", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff81", + "0x48127ffe7fff8000", + "0x48127fe47fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff21", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa3", + "0x40127fe87fff7fff", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x400380007ffb7ffc", + "0x400380017ffb7ffd", + "0x482680017ffb8000", + "0x2", + "0x208b7fff7fff7ffe", + "0x484a7ffc7ff88000", + "0x484a7ffb7ff98000", + "0x484a7ffd7ff88000", + "0x484a7ffc7ff98000", + "0x48307fff7ffe8000", + "0x484a7ffb7ffa8000", + "0x484a7ffd7ff98000", + "0x484a7ffc7ffa8000", + "0x484a7ffb7ff88000", + "0x48307ff87ff78000", + "0x48307ffb7ffa8000", + "0x48307ffc7ffb8000", + "0x484a7ffd7ffa8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x4000000000000000000000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeaf", + "0x48127ffd7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x100000000000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea9", + "0x484480017fff8000", + "0x40000000000", + "0x48127ffc7fff8000", + "0x48127fe87fff8000", + "0x48307fe67ffd8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x400380017ff97ffa", + "0x400380007ff97ffb", + "0x482680017ff98000", + "0x2", + "0x208b7fff7fff7ffe", + "0x4824800180058000", + "0xffffffffff8000000000000000000000", + "0x48307fff80038000", + "0x400280007ffd7fff", + "0x4824800180048000", + "0xffffffffffc000000000000000000000", + "0x400280017ffd7fff", + "0x482680017ffd8000", + "0x5", + "0x48007ffd7fff8000", + "0x48007ffe7ffe8000", + "0x48007fff7ffd8000", + "0x208b7fff7fff7ffe", + "0x480280017ffc8000", + "0x482480017fff8000", + "0xffffffffffffffffffffffe000000000", + "0x400280027ffc7fff", + "0x480280017ffc8000", + "0x484480017fff8000", + "0x100000000000000000000000000000000", + "0x480280007ffc8000", + "0x40317fff7ffe7ffd", + "0x482680017ffc8000", + "0x3", + "0x208b7fff7fff7ffe", + "0x484a7ffd7ffa8000", + "0x484a7ffc7ffa8000", + "0x484a7ffd7ff98000", + "0x48307fff7ffe8000", + "0x484a7ffb7ff88000", + "0x480680017fff8000", + "0x100000000000000", + "0x48507ffa7fff8000", + "0x48307fff7ffd8000", + "0x480680017fff8000", + "0x4", + "0x48507ffa7fff8000", + "0x484a7ffb7ff98000", + "0x484a7ffc7ff88000", + "0x48307fff7ffe8000", + "0x480680017fff8000", + "0x800000000000010fffffffffffffffffffffffffffffffc0000000000000005", + "0x48507ff27fff8000", + "0x48307fff7ffd8000", + "0x480680017fff8000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff001", + "0x48507ff27fff8000", + "0x484a7ffb7ffa8000", + "0x484a7ffc7ff98000", + "0x48307fff7ffe8000", + "0x484a7ffd7ff88000", + "0x48307fff7ffe8000", + "0x480680017fff8000", + "0x800000000000010ffffffffffffffffffffffffffffeffffffffffffffff001", + "0x48507fe87fff8000", + "0x48307fff7ffd8000", + "0x480680017fff8000", + "0x3fffffffc00000", + "0x48507fe87fff8000", + "0x48307fed7feb8000", + "0x48307ff47ff28000", + "0x48307ffd7ffb8000", + "0x208b7fff7fff7ffe", + "0x484a7ffd7ffd8000", + "0x484a7ffc7ffd8000", + "0x484a7ffd7ffc8000", + "0x48307fff7ffe8000", + "0x484a7ffb7ffc8000", + "0x484a7ffb7ffb8000", + "0x480680017fff8000", + "0x100000000000000", + "0x48507ff97fff8000", + "0x48307fff7ffd8000", + "0x480680017fff8000", + "0x4", + "0x48507ff97fff8000", + "0x48307ff97ff98000", + "0x480680017fff8000", + "0x800000000000010fffffffffffffffffffffffffffffffc0000000000000005", + "0x48507ff37fff8000", + "0x48307fff7ffd8000", + "0x480680017fff8000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff001", + "0x48507ff37fff8000", + "0x484a7ffb7ffd8000", + "0x484a7ffc7ffc8000", + "0x48307fff7ffe8000", + "0x484a7ffd7ffb8000", + "0x48307fff7ffe8000", + "0x480680017fff8000", + "0x800000000000010ffffffffffffffffffffffffffffeffffffffffffffff001", + "0x48507fe97fff8000", + "0x48307fff7ffd8000", + "0x480680017fff8000", + "0x3fffffffc00000", + "0x48507fe97fff8000", + "0x48307fef7fed8000", + "0x48307ff47ff28000", + "0x48307ffd7ffb8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480a7ffa7fff8000", + "0x4826800180008000", + "0x100000000000000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa5", + "0x482a80007ffb8000", + "0x484480017fff8000", + "0x800000000000010ffffffdfffffffffffffbc00000000000000000000000001", + "0x48127ffd7fff8000", + "0x482480017ffe8000", + "0x100000000000000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff9d", + "0x4846800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc01", + "0x48327fff7ffc8000", + "0x48307ff37fff8000", + "0x484480017fff8000", + "0x800000000000010ffffffdfffffffffffffbc00000000000000000000000001", + "0x48127ffb7fff8000", + "0x482480017ffe8000", + "0x100000000000000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff92", + "0x4846800180008000", + "0xffffffff00000", + "0x4846800180008000", + "0x1000000000000000000000", + "0x48307ff380007fff", + "0x40327ffd7ffd7fff", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0xb", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd5", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6b", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7c", + "0x48127fd57fff8000", + "0x482480017ffc8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff56", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff53", + "0x48127ffc7fff8000", + "0x48317ffc80007ffb", + "0x48317ffc80007ffc", + "0x48317ffc80007ffd", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb1", + "0x48127fce7fff8000", + "0x48127fce7fff8000", + "0x48127fce7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff46", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff80", + "0x48127fda7fff8000", + "0x48127fda7fff8000", + "0x48127fda7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff52", + "0x480680017fff8000", + "0x3", + "0x48507fd57fff8000", + "0x482480017fff8000", + "0x3ffffffffffffffffffffc", + "0x480680017fff8000", + "0x2", + "0x48507ff97fff8000", + "0x480680017fff8000", + "0x3", + "0x48507fd17fff8000", + "0x482480017fff8000", + "0x3ff", + "0x480680017fff8000", + "0x2", + "0x48507ff57fff8000", + "0x480680017fff8000", + "0x3", + "0x48507fcd7fff8000", + "0x482480017fff8000", + "0xffffffff0000000100000", + "0x480680017fff8000", + "0x2", + "0x48507ff17fff8000", + "0x48127fa37fff8000", + "0x48307ff480007ff2", + "0x48307ff880007ff6", + "0x48307ffc80007ffa", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7f", + "0x48127f757fff8000", + "0x48127f757fff8000", + "0x48127f757fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff17fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff14", + "0x48297ff880007ff2", + "0x48297ff980007ff3", + "0x48297ffa80007ff4", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff25", + "0x48287ff580007ffd", + "0x48287ff680007ffd", + "0x48287ff780007ffd", + "0x48127fd27fff8000", + "0x48287ffb7ffc8000", + "0x48287ffc7ffc8000", + "0x48287ffd7ffc8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff67", + "0x48127fa47fff8000", + "0x48127fa47fff8000", + "0x48127fa47fff8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ff8", + "0xe", + "0x20780017fff7ff9", + "0xc", + "0x20780017fff7ffa", + "0xa", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff25", + "0x48127fdc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee3", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee0", + "0x48307ff380007fe9", + "0x480680017fff8000", + "0x2", + "0x48487ff87fff8000", + "0x48307ff180007fe7", + "0x480680017fff8000", + "0x2", + "0x48487ff97fff8000", + "0x48307fef80007fe5", + "0x480680017fff8000", + "0x2", + "0x48487ffa7fff8000", + "0x48127ff37fff8000", + "0x48307ff880007ff6", + "0x48307ffa80007ff8", + "0x48307ffc80007ffa", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff32", + "0x48317fbb80007ff8", + "0x48317fbb80007ff9", + "0x48317fbb80007ffa", + "0x48127f8e7fff8000", + "0x48127f8e7fff8000", + "0x48127f8e7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffedf", + "0x48287ffb80007ffd", + "0x48287ffc80007ffd", + "0x48287ffd80007ffd", + "0x48127fd57fff8000", + "0x48307f9a80007ffc", + "0x48307f9a80007ffc", + "0x48307f9a80007ffc", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff21", + "0x48127f627fff8000", + "0x48127f627fff8000", + "0x48127f627fff8000", + "0x48127f697fff8000", + "0x48127f697fff8000", + "0x48127f697fff8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ff2", + "0xe", + "0x20780017fff7ff3", + "0xc", + "0x20780017fff7ff4", + "0xa", + "0x480a7ff17fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ff8", + "0xe", + "0x20780017fff7ff9", + "0xc", + "0x20780017fff7ffa", + "0xa", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff77", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec8", + "0x48127fdc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe86", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe83", + "0x48307ff380007fe9", + "0x48287ff280007fff", + "0x48307ff280007fe8", + "0x48287ff380007fff", + "0x48307ff180007fe7", + "0x48287ff480007fff", + "0x48127ff67fff8000", + "0x48287ff880007ffa", + "0x48287ff980007ffb", + "0x48287ffa80007ffc", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffedb", + "0x48317fbe80007ff2", + "0x48317fbe80007ff3", + "0x48317fbe80007ff4", + "0x48127f917fff8000", + "0x48127f917fff8000", + "0x48127f917fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe88", + "0x48287ff580007ffd", + "0x48287ff680007ffd", + "0x48287ff780007ffd", + "0x48127fd57fff8000", + "0x48307f9d80007ffc", + "0x48307f9d80007ffc", + "0x48307f9d80007ffc", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeca", + "0x48127f657fff8000", + "0x48127f657fff8000", + "0x48127f657fff8000", + "0x48127f6c7fff8000", + "0x48127f6c7fff8000", + "0x48127f6c7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff17fff8000", + "0x48297ff880007ff2", + "0x48297ff980007ff3", + "0x48297ffa80007ff4", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffedf", + "0x20680017fff7fff", + "0x12", + "0x48127ffe7fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff95", + "0x208b7fff7fff7ffe", + "0x48127ffe7fff8000", + "0x482a7ffb7ff58000", + "0x482a7ffc7ff68000", + "0x482a7ffd7ff78000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec7", + "0x20680017fff7fff", + "0xc", + "0x48127ffe7fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff3a", + "0x208b7fff7fff7ffe", + "0x48127ffe7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe61", + "0x480a7ff77fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec6", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe2d", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x3ffffffffffffffffffffc", + "0x480680017fff8000", + "0x3ff", + "0x480680017fff8000", + "0xffffffff0000000100000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe22", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe43", + "0x482480017fda8000", + "0x13b0f63bce3c3e27d2604b", + "0x48307fff7fb28000", + "0x482480017fd98000", + "0x3555da621af194741ac331", + "0x48307fff7fb18000", + "0x482480017fd88000", + "0x5ac635d8aa3a93e7b3ebb", + "0x48307fff7fb08000", + "0x48127f857fff8000", + "0x48307ff680007ffa", + "0x48307ff680007ffb", + "0x48307ff680007ffc", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe59", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x482680017ffd8000", + "0x1", + "0x20680017fff7fff", + "0xa", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x208b7fff7fff7ffe", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee1", + "0x20780017fff8000", + "0x1b", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd2", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x2a", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff53", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa6", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x20680017fff7fff", + "0x2a", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff27", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7a", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffe", + "0x20680017fff7fff", + "0x2a", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffefb", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff4e", + "0x208b7fff7fff7ffe", + "0x48127ff67fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x482680017ffd8000", + "0x1", + "0x20680017fff7fff", + "0xa", + "0x480a7f9a7fff8000", + "0x480a7f9b7fff8000", + "0x480a7f9c7fff8000", + "0x480a7f9d7fff8000", + "0x480a7f9e7fff8000", + "0x480a7f9f7fff8000", + "0x480a7fa07fff8000", + "0x208b7fff7fff7ffe", + "0x480a7f9a7fff8000", + "0x480a7f9b7fff8000", + "0x480a7f9c7fff8000", + "0x480a7f9d7fff8000", + "0x480a7f9e7fff8000", + "0x480a7f9f7fff8000", + "0x480a7fa07fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe23", + "0x20780017fff7ffd", + "0x21", + "0x48127ff97fff8000", + "0x480a7f9b7fff8000", + "0x480a7f9c7fff8000", + "0x480a7f9d7fff8000", + "0x480a7f9e7fff8000", + "0x480a7f9f7fff8000", + "0x480a7fa07fff8000", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff0e", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe00", + "0x20780017fff8000", + "0x63", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff67", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x72", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe2a", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef3", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x20680017fff7fff", + "0x72", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdb6", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe7f", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffe", + "0x20680017fff7fff", + "0x72", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd42", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe0b", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffd", + "0x20680017fff7fff", + "0x72", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcce", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd97", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffc", + "0x20680017fff7fff", + "0x72", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc5a", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd23", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", + "0x20680017fff7fff", + "0x72", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbe6", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcaf", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x20680017fff7fff", + "0x72", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb72", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc3b", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff9", + "0x20680017fff7fff", + "0x72", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffafe", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbc7", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff8", + "0x20680017fff7fff", + "0x72", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa8a", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb53", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff7", + "0x20680017fff7fff", + "0x72", + "0x48127fef7fff8000", + "0x48127fef7fff8000", + "0x48127fef7fff8000", + "0x48127fef7fff8000", + "0x48127fef7fff8000", + "0x48127fef7fff8000", + "0x48127fef7fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa16", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffadf", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff6", + "0x20680017fff7fff", + "0x72", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9a2", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa6b", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff5", + "0x20680017fff7fff", + "0x72", + "0x48127fed7fff8000", + "0x48127fed7fff8000", + "0x48127fed7fff8000", + "0x48127fed7fff8000", + "0x48127fed7fff8000", + "0x48127fed7fff8000", + "0x48127fed7fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff92e", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9f7", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff4", + "0x20680017fff7fff", + "0x72", + "0x48127fec7fff8000", + "0x48127fec7fff8000", + "0x48127fec7fff8000", + "0x48127fec7fff8000", + "0x48127fec7fff8000", + "0x48127fec7fff8000", + "0x48127fec7fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8ba", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff983", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", + "0x20680017fff7fff", + "0x72", + "0x48127feb7fff8000", + "0x48127feb7fff8000", + "0x48127feb7fff8000", + "0x48127feb7fff8000", + "0x48127feb7fff8000", + "0x48127feb7fff8000", + "0x48127feb7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff846", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff90f", + "0x208b7fff7fff7ffe", + "0x4826800180008000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff2", + "0x20680017fff7fff", + "0x72", + "0x48127fea7fff8000", + "0x48127fea7fff8000", + "0x48127fea7fff8000", + "0x48127fea7fff8000", + "0x48127fea7fff8000", + "0x48127fea7fff8000", + "0x48127fea7fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff7d2", + "0x480a7fa17fff8000", + "0x480a7fa27fff8000", + "0x480a7fa37fff8000", + "0x480a7fa47fff8000", + "0x480a7fa57fff8000", + "0x480a7fa67fff8000", + "0x480a7fa77fff8000", + "0x480a7fa87fff8000", + "0x480a7fa97fff8000", + "0x480a7faa7fff8000", + "0x480a7fab7fff8000", + "0x480a7fac7fff8000", + "0x480a7fad7fff8000", + "0x480a7fae7fff8000", + "0x480a7faf7fff8000", + "0x480a7fb07fff8000", + "0x480a7fb17fff8000", + "0x480a7fb27fff8000", + "0x480a7fb37fff8000", + "0x480a7fb47fff8000", + "0x480a7fb57fff8000", + "0x480a7fb67fff8000", + "0x480a7fb77fff8000", + "0x480a7fb87fff8000", + "0x480a7fb97fff8000", + "0x480a7fba7fff8000", + "0x480a7fbb7fff8000", + "0x480a7fbc7fff8000", + "0x480a7fbd7fff8000", + "0x480a7fbe7fff8000", + "0x480a7fbf7fff8000", + "0x480a7fc07fff8000", + "0x480a7fc17fff8000", + "0x480a7fc27fff8000", + "0x480a7fc37fff8000", + "0x480a7fc47fff8000", + "0x480a7fc57fff8000", + "0x480a7fc67fff8000", + "0x480a7fc77fff8000", + "0x480a7fc87fff8000", + "0x480a7fc97fff8000", + "0x480a7fca7fff8000", + "0x480a7fcb7fff8000", + "0x480a7fcc7fff8000", + "0x480a7fcd7fff8000", + "0x480a7fce7fff8000", + "0x480a7fcf7fff8000", + "0x480a7fd07fff8000", + "0x480a7fd17fff8000", + "0x480a7fd27fff8000", + "0x480a7fd37fff8000", + "0x480a7fd47fff8000", + "0x480a7fd57fff8000", + "0x480a7fd67fff8000", + "0x480a7fd77fff8000", + "0x480a7fd87fff8000", + "0x480a7fd97fff8000", + "0x480a7fda7fff8000", + "0x480a7fdb7fff8000", + "0x480a7fdc7fff8000", + "0x480a7fdd7fff8000", + "0x480a7fde7fff8000", + "0x480a7fdf7fff8000", + "0x480a7fe07fff8000", + "0x480a7fe17fff8000", + "0x480a7fe27fff8000", + "0x480a7fe37fff8000", + "0x480a7fe47fff8000", + "0x480a7fe57fff8000", + "0x480a7fe67fff8000", + "0x480a7fe77fff8000", + "0x480a7fe87fff8000", + "0x480a7fe97fff8000", + "0x480a7fea7fff8000", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff89b", + "0x208b7fff7fff7ffe", + "0x48127fea7fff8000", + "0x480a7f9b7fff8000", + "0x480a7f9c7fff8000", + "0x480a7f9d7fff8000", + "0x480a7f9e7fff8000", + "0x480a7f9f7fff8000", + "0x480a7fa07fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0xab", + "0x480a7feb7fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff758", + "0x40137ffa7fff8003", + "0x40137ffb7fff8004", + "0x40137ffc7fff8005", + "0x40137ffd7fff8006", + "0x40137ffe7fff8007", + "0x40137fff7fff8008", + "0x48127ff97fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6a9", + "0x40137ffa7fff8009", + "0x40137ffb7fff800a", + "0x40137ffc7fff800b", + "0x40137ffd7fff800c", + "0x40137ffe7fff800d", + "0x40137fff7fff800e", + "0x48127ff97fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a80097fff8000", + "0x480a800a7fff8000", + "0x480a800b7fff8000", + "0x480a800c7fff8000", + "0x480a800d7fff8000", + "0x480a800e7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff734", + "0x40137ffa7fff800f", + "0x40137ffb7fff8010", + "0x40137ffc7fff8011", + "0x40137ffd7fff8012", + "0x40137ffe7fff8013", + "0x40137fff7fff8014", + "0x48127ff97fff8000", + "0x480a80097fff8000", + "0x480a800a7fff8000", + "0x480a800b7fff8000", + "0x480a800c7fff8000", + "0x480a800d7fff8000", + "0x480a800e7fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff71f", + "0x40137ffa7fff8015", + "0x40137ffb7fff8016", + "0x40137ffc7fff8017", + "0x40137ffd7fff8018", + "0x40137ffe7fff8019", + "0x40137fff7fff801a", + "0x48127ff97fff8000", + "0x480a800f7fff8000", + "0x480a80107fff8000", + "0x480a80117fff8000", + "0x480a80127fff8000", + "0x480a80137fff8000", + "0x480a80147fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff70a", + "0x40137ffa7fff801b", + "0x40137ffb7fff801c", + "0x40137ffc7fff801d", + "0x40137ffd7fff801e", + "0x40137ffe7fff801f", + "0x40137fff7fff8020", + "0x48127ff97fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff65b", + "0x40137ffa7fff8021", + "0x40137ffb7fff8022", + "0x40137ffc7fff8023", + "0x40137ffd7fff8024", + "0x40137ffe7fff8025", + "0x40137fff7fff8026", + "0x48127ff97fff8000", + "0x480a80217fff8000", + "0x480a80227fff8000", + "0x480a80237fff8000", + "0x480a80247fff8000", + "0x480a80257fff8000", + "0x480a80267fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6e6", + "0x40137ffa7fff8027", + "0x40137ffb7fff8028", + "0x40137ffc7fff8029", + "0x40137ffd7fff802a", + "0x40137ffe7fff802b", + "0x40137fff7fff802c", + "0x48127ff97fff8000", + "0x480a80217fff8000", + "0x480a80227fff8000", + "0x480a80237fff8000", + "0x480a80247fff8000", + "0x480a80257fff8000", + "0x480a80267fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6d1", + "0x40137ffa7fff802d", + "0x40137ffb7fff802e", + "0x40137ffc7fff802f", + "0x40137ffd7fff8030", + "0x40137ffe7fff8031", + "0x40137fff7fff8032", + "0x48127ff97fff8000", + "0x480a802d7fff8000", + "0x480a802e7fff8000", + "0x480a802f7fff8000", + "0x480a80307fff8000", + "0x480a80317fff8000", + "0x480a80327fff8000", + "0x480a7fec7fff8000", + "0x480a7fed7fff8000", + "0x480a7fee7fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6bc", + "0x40137ffa7fff8033", + "0x40137ffb7fff8034", + "0x40137ffc7fff8035", + "0x40137ffd7fff8036", + "0x40137ffe7fff8037", + "0x40137fff7fff8038", + "0x48127ff97fff8000", + "0x480a80217fff8000", + "0x480a80227fff8000", + "0x480a80237fff8000", + "0x480a80247fff8000", + "0x480a80257fff8000", + "0x480a80267fff8000", + "0x480a80097fff8000", + "0x480a800a7fff8000", + "0x480a800b7fff8000", + "0x480a800c7fff8000", + "0x480a800d7fff8000", + "0x480a800e7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6a7", + "0x40137ffa7fff8039", + "0x40137ffb7fff803a", + "0x40137ffc7fff803b", + "0x40137ffd7fff803c", + "0x40137ffe7fff803d", + "0x40137fff7fff803e", + "0x48127ff97fff8000", + "0x480a80217fff8000", + "0x480a80227fff8000", + "0x480a80237fff8000", + "0x480a80247fff8000", + "0x480a80257fff8000", + "0x480a80267fff8000", + "0x480a800f7fff8000", + "0x480a80107fff8000", + "0x480a80117fff8000", + "0x480a80127fff8000", + "0x480a80137fff8000", + "0x480a80147fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff692", + "0x40137ffa7fff803f", + "0x40137ffb7fff8040", + "0x40137ffc7fff8041", + "0x40137ffd7fff8042", + "0x40137ffe7fff8043", + "0x40137fff7fff8044", + "0x48127ff97fff8000", + "0x480a802d7fff8000", + "0x480a802e7fff8000", + "0x480a802f7fff8000", + "0x480a80307fff8000", + "0x480a80317fff8000", + "0x480a80327fff8000", + "0x480a80097fff8000", + "0x480a800a7fff8000", + "0x480a800b7fff8000", + "0x480a800c7fff8000", + "0x480a800d7fff8000", + "0x480a800e7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff67d", + "0x40137ffa7fff8045", + "0x40137ffb7fff8046", + "0x40137ffc7fff8047", + "0x40137ffd7fff8048", + "0x40137ffe7fff8049", + "0x40137fff7fff804a", + "0x48127ff97fff8000", + "0x480a802d7fff8000", + "0x480a802e7fff8000", + "0x480a802f7fff8000", + "0x480a80307fff8000", + "0x480a80317fff8000", + "0x480a80327fff8000", + "0x480a800f7fff8000", + "0x480a80107fff8000", + "0x480a80117fff8000", + "0x480a80127fff8000", + "0x480a80137fff8000", + "0x480a80147fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff668", + "0x400b7fec7fff804b", + "0x400b7fed7fff804c", + "0x400b7fee7fff804d", + "0x400b7fef7fff804e", + "0x400b7ff07fff804f", + "0x400b7ff17fff8050", + "0x400b7ff27fff8051", + "0x400b7ff37fff8052", + "0x400b7ff47fff8053", + "0x400b7ff57fff8054", + "0x400b7ff67fff8055", + "0x400b7ff77fff8056", + "0x400b80037fff8057", + "0x400b80047fff8058", + "0x400b80057fff8059", + "0x400b80067fff805a", + "0x400b80077fff805b", + "0x400b80087fff805c", + "0x400b80097fff805d", + "0x400b800a7fff805e", + "0x400b800b7fff805f", + "0x400b800c7fff8060", + "0x400b800d7fff8061", + "0x400b800e7fff8062", + "0x400b800f7fff8063", + "0x400b80107fff8064", + "0x400b80117fff8065", + "0x400b80127fff8066", + "0x400b80137fff8067", + "0x400b80147fff8068", + "0x400b80157fff8069", + "0x400b80167fff806a", + "0x400b80177fff806b", + "0x400b80187fff806c", + "0x400b80197fff806d", + "0x400b801a7fff806e", + "0x400b801b7fff806f", + "0x400b801c7fff8070", + "0x400b801d7fff8071", + "0x400b801e7fff8072", + "0x400b801f7fff8073", + "0x400b80207fff8074", + "0x400b80217fff8075", + "0x400b80227fff8076", + "0x400b80237fff8077", + "0x400b80247fff8078", + "0x400b80257fff8079", + "0x400b80267fff807a", + "0x400b80277fff807b", + "0x400b80287fff807c", + "0x400b80297fff807d", + "0x400b802a7fff807e", + "0x400b802b7fff807f", + "0x400b802c7fff8080", + "0x400b802d7fff8081", + "0x400b802e7fff8082", + "0x400b802f7fff8083", + "0x400b80307fff8084", + "0x400b80317fff8085", + "0x400b80327fff8086", + "0x400b80337fff8087", + "0x400b80347fff8088", + "0x400b80357fff8089", + "0x400b80367fff808a", + "0x400b80377fff808b", + "0x400b80387fff808c", + "0x400b80397fff808d", + "0x400b803a7fff808e", + "0x400b803b7fff808f", + "0x400b803c7fff8090", + "0x400b803d7fff8091", + "0x400b803e7fff8092", + "0x400b803f7fff8093", + "0x400b80407fff8094", + "0x400b80417fff8095", + "0x400b80427fff8096", + "0x400b80437fff8097", + "0x400b80447fff8098", + "0x400b80457fff8099", + "0x400b80467fff809a", + "0x400b80477fff809b", + "0x400b80487fff809c", + "0x400b80497fff809d", + "0x400b804a7fff809e", + "0x40137ffa7fff809f", + "0x40137ffb7fff80a0", + "0x40137ffc7fff80a1", + "0x40137ffd7fff80a2", + "0x40137ffe7fff80a3", + "0x40137fff7fff80a4", + "0x400780017fff80a5", + "0x0", + "0x400780017fff80a6", + "0x0", + "0x400780017fff80a7", + "0x0", + "0x400780017fff80a8", + "0x0", + "0x400780017fff80a9", + "0x0", + "0x400780017fff80aa", + "0x0", + "0x400180007ff98000", + "0x480680017fff8000", + "0x56", + "0x4828800080007fff", + "0x400080017ff77fff", + "0x482480017ff78000", + "0x2", + "0x480a80a57fff8000", + "0x480a80a67fff8000", + "0x480a80a77fff8000", + "0x480a80a87fff8000", + "0x480a80a97fff8000", + "0x480a80aa7fff8000", + "0x480a804b7fff8000", + "0x480a804c7fff8000", + "0x480a804d7fff8000", + "0x480a804e7fff8000", + "0x480a804f7fff8000", + "0x480a80507fff8000", + "0x480a80517fff8000", + "0x480a80527fff8000", + "0x480a80537fff8000", + "0x480a80547fff8000", + "0x480a80557fff8000", + "0x480a80567fff8000", + "0x480a80577fff8000", + "0x480a80587fff8000", + "0x480a80597fff8000", + "0x480a805a7fff8000", + "0x480a805b7fff8000", + "0x480a805c7fff8000", + "0x480a805d7fff8000", + "0x480a805e7fff8000", + "0x480a805f7fff8000", + "0x480a80607fff8000", + "0x480a80617fff8000", + "0x480a80627fff8000", + "0x480a80637fff8000", + "0x480a80647fff8000", + "0x480a80657fff8000", + "0x480a80667fff8000", + "0x480a80677fff8000", + "0x480a80687fff8000", + "0x480a80697fff8000", + "0x480a806a7fff8000", + "0x480a806b7fff8000", + "0x480a806c7fff8000", + "0x480a806d7fff8000", + "0x480a806e7fff8000", + "0x480a806f7fff8000", + "0x480a80707fff8000", + "0x480a80717fff8000", + "0x480a80727fff8000", + "0x480a80737fff8000", + "0x480a80747fff8000", + "0x480a80757fff8000", + "0x480a80767fff8000", + "0x480a80777fff8000", + "0x480a80787fff8000", + "0x480a80797fff8000", + "0x480a807a7fff8000", + "0x480a807b7fff8000", + "0x480a807c7fff8000", + "0x480a807d7fff8000", + "0x480a807e7fff8000", + "0x480a807f7fff8000", + "0x480a80807fff8000", + "0x480a80817fff8000", + "0x480a80827fff8000", + "0x480a80837fff8000", + "0x480a80847fff8000", + "0x480a80857fff8000", + "0x480a80867fff8000", + "0x480a80877fff8000", + "0x480a80887fff8000", + "0x480a80897fff8000", + "0x480a808a7fff8000", + "0x480a808b7fff8000", + "0x480a808c7fff8000", + "0x480a808d7fff8000", + "0x480a808e7fff8000", + "0x480a808f7fff8000", + "0x480a80907fff8000", + "0x480a80917fff8000", + "0x480a80927fff8000", + "0x480a80937fff8000", + "0x480a80947fff8000", + "0x480a80957fff8000", + "0x480a80967fff8000", + "0x480a80977fff8000", + "0x480a80987fff8000", + "0x480a80997fff8000", + "0x480a809a7fff8000", + "0x480a809b7fff8000", + "0x480a809c7fff8000", + "0x480a809d7fff8000", + "0x480a809e7fff8000", + "0x480a809f7fff8000", + "0x480a80a07fff8000", + "0x480a80a17fff8000", + "0x480a80a27fff8000", + "0x480a80a37fff8000", + "0x480a80a47fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffd7fff8000", + "0x480a80007fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6bf", + "0x480a804b7fff8000", + "0x480a804c7fff8000", + "0x480a804d7fff8000", + "0x480a804e7fff8000", + "0x480a804f7fff8000", + "0x480a80507fff8000", + "0x480a80517fff8000", + "0x480a80527fff8000", + "0x480a80537fff8000", + "0x480a80547fff8000", + "0x480a80557fff8000", + "0x480a80567fff8000", + "0x480a80577fff8000", + "0x480a80587fff8000", + "0x480a80597fff8000", + "0x480a805a7fff8000", + "0x480a805b7fff8000", + "0x480a805c7fff8000", + "0x480a805d7fff8000", + "0x480a805e7fff8000", + "0x480a805f7fff8000", + "0x480a80607fff8000", + "0x480a80617fff8000", + "0x480a80627fff8000", + "0x480a80637fff8000", + "0x480a80647fff8000", + "0x480a80657fff8000", + "0x480a80667fff8000", + "0x480a80677fff8000", + "0x480a80687fff8000", + "0x480a80697fff8000", + "0x480a806a7fff8000", + "0x480a806b7fff8000", + "0x480a806c7fff8000", + "0x480a806d7fff8000", + "0x480a806e7fff8000", + "0x480a806f7fff8000", + "0x480a80707fff8000", + "0x480a80717fff8000", + "0x480a80727fff8000", + "0x480a80737fff8000", + "0x480a80747fff8000", + "0x480a80757fff8000", + "0x480a80767fff8000", + "0x480a80777fff8000", + "0x480a80787fff8000", + "0x480a80797fff8000", + "0x480a807a7fff8000", + "0x480a807b7fff8000", + "0x480a807c7fff8000", + "0x480a807d7fff8000", + "0x480a807e7fff8000", + "0x480a807f7fff8000", + "0x480a80807fff8000", + "0x480a80817fff8000", + "0x480a80827fff8000", + "0x480a80837fff8000", + "0x480a80847fff8000", + "0x480a80857fff8000", + "0x480a80867fff8000", + "0x480a80877fff8000", + "0x480a80887fff8000", + "0x480a80897fff8000", + "0x480a808a7fff8000", + "0x480a808b7fff8000", + "0x480a808c7fff8000", + "0x480a808d7fff8000", + "0x480a808e7fff8000", + "0x480a808f7fff8000", + "0x480a80907fff8000", + "0x480a80917fff8000", + "0x480a80927fff8000", + "0x480a80937fff8000", + "0x480a80947fff8000", + "0x480a80957fff8000", + "0x480a80967fff8000", + "0x480a80977fff8000", + "0x480a80987fff8000", + "0x480a80997fff8000", + "0x480a809a7fff8000", + "0x480a809b7fff8000", + "0x480a809c7fff8000", + "0x480a809d7fff8000", + "0x480a809e7fff8000", + "0x480a809f7fff8000", + "0x480a80a07fff8000", + "0x480a80a17fff8000", + "0x480a80a27fff8000", + "0x480a80a37fff8000", + "0x480a80a47fff8000", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x55", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff65f", + "0x480a804b7fff8000", + "0x480a804c7fff8000", + "0x480a804d7fff8000", + "0x480a804e7fff8000", + "0x480a804f7fff8000", + "0x480a80507fff8000", + "0x480a80517fff8000", + "0x480a80527fff8000", + "0x480a80537fff8000", + "0x480a80547fff8000", + "0x480a80557fff8000", + "0x480a80567fff8000", + "0x480a80577fff8000", + "0x480a80587fff8000", + "0x480a80597fff8000", + "0x480a805a7fff8000", + "0x480a805b7fff8000", + "0x480a805c7fff8000", + "0x480a805d7fff8000", + "0x480a805e7fff8000", + "0x480a805f7fff8000", + "0x480a80607fff8000", + "0x480a80617fff8000", + "0x480a80627fff8000", + "0x480a80637fff8000", + "0x480a80647fff8000", + "0x480a80657fff8000", + "0x480a80667fff8000", + "0x480a80677fff8000", + "0x480a80687fff8000", + "0x480a80697fff8000", + "0x480a806a7fff8000", + "0x480a806b7fff8000", + "0x480a806c7fff8000", + "0x480a806d7fff8000", + "0x480a806e7fff8000", + "0x480a806f7fff8000", + "0x480a80707fff8000", + "0x480a80717fff8000", + "0x480a80727fff8000", + "0x480a80737fff8000", + "0x480a80747fff8000", + "0x480a80757fff8000", + "0x480a80767fff8000", + "0x480a80777fff8000", + "0x480a80787fff8000", + "0x480a80797fff8000", + "0x480a807a7fff8000", + "0x480a807b7fff8000", + "0x480a807c7fff8000", + "0x480a807d7fff8000", + "0x480a807e7fff8000", + "0x480a807f7fff8000", + "0x480a80807fff8000", + "0x480a80817fff8000", + "0x480a80827fff8000", + "0x480a80837fff8000", + "0x480a80847fff8000", + "0x480a80857fff8000", + "0x480a80867fff8000", + "0x480a80877fff8000", + "0x480a80887fff8000", + "0x480a80897fff8000", + "0x480a808a7fff8000", + "0x480a808b7fff8000", + "0x480a808c7fff8000", + "0x480a808d7fff8000", + "0x480a808e7fff8000", + "0x480a808f7fff8000", + "0x480a80907fff8000", + "0x480a80917fff8000", + "0x480a80927fff8000", + "0x480a80937fff8000", + "0x480a80947fff8000", + "0x480a80957fff8000", + "0x480a80967fff8000", + "0x480a80977fff8000", + "0x480a80987fff8000", + "0x480a80997fff8000", + "0x480a809a7fff8000", + "0x480a809b7fff8000", + "0x480a809c7fff8000", + "0x480a809d7fff8000", + "0x480a809e7fff8000", + "0x480a809f7fff8000", + "0x480a80a07fff8000", + "0x480a80a17fff8000", + "0x480a80a27fff8000", + "0x480a80a37fff8000", + "0x480a80a47fff8000", + "0x480a7ff87fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x55", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5ff", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x2b33a0f4a13945d898c296", + "0x480680017fff8000", + "0x1b958e9103c9dc0df604b7", + "0x480680017fff8000", + "0x6b17d1f2e12c4247f8bce", + "0x480680017fff8000", + "0x315ececbb6406837bf51f5", + "0x480680017fff8000", + "0x2d29f03e7858af38cd5dac", + "0x480680017fff8000", + "0x4fe342e2fe1a7f9b8ee7e", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff321", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff31e", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff2f0", + "0x482480017fe88000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48127fe87fff8000", + "0x48127fe87fff8000", + "0x480680017fff8000", + "0x179e84f3b9cac2fc632551", + "0x480680017fff8000", + "0x3ffffffffffef39beab69c", + "0x480680017fff8000", + "0xffffffff00000000fffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff2e4", + "0x48307ffb80007fe6", + "0x48287ff880007fff", + "0x484480017fff8000", + "0x800000000000010ffffffdfffffffffffffbc00000000000000000000000001", + "0x482480017fff8000", + "0x80000000000000000000000000000000", + "0x400080007fce7fff", + "0x48307ff880007fe3", + "0x48287ff980007fff", + "0x48307ffc7fff8000", + "0x484480017fff8000", + "0x800000000000010ffffffdfffffffffffffbc00000000000000000000000001", + "0x482480017fff8000", + "0x80000000000000000000000000000000", + "0x400080017fc97fff", + "0x48307ff480007fdf", + "0x48287ffa80007fff", + "0x48307ffc7fff8000", + "0x484480017fff8000", + "0x800000000000010ffffffdfffffffffffffbc00000000000000000000000001", + "0x482480017fff8000", + "0x80000000000000000000000000000000", + "0x400080027fc47fff", + "0x48307ff080007fdb", + "0x48307ffd7fff8000", + "0x484480017fff8000", + "0x800000000000010ffffffdfffffffffffffbc00000000000000000000000001", + "0x482480017fff8000", + "0x80000000000000000000000000000000", + "0x400080037fc07fff", + "0x48307fed80007fd8", + "0x480680017fff8000", + "0x0", + "0x40307ffc7ffe7fff", + "0x482480017fbe8000", + "0x4", + "0x48127fb47fff8000", + "0x48127fb47fff8000", + "0x48127fb47fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0xffffffff00000000fffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff10b", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x3fffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff106", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x3fffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff101", + "0x482680017ffd8000", + "0x800000000000010fffffffffffffffffffffffffff00000000ffffffff00002", + "0x20680017fff7fff", + "0x14", + "0x482680017ffc8000", + "0x800000000000010ffffffffffffffffffffffffffc000000000010c64154965", + "0x20680017fff7fff", + "0x9", + "0x48127ffd7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x179e84f3b9cac2fc632550", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0f3", + "0x208b7fff7fff7ffe", + "0x48127ffd7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x3ffffffffffef39beab69b", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0ec", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffd", + "0x9", + "0x20780017fff7ffc", + "0x7", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0d0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffe7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x0", + "0x480a7fee7fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffca", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc5", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff74", + "0x48127ff77fff8000", + "0x480a7fef7fff8000", + "0x480a7ff07fff8000", + "0x480a7ff17fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff78", + "0x48127ffc7fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6f", + "0x48127ffc7fff8000", + "0x48127f3b7fff8000", + "0x48127f3b7fff8000", + "0x48127f3b7fff8000", + "0x48127f3b7fff8000", + "0x48127f3b7fff8000", + "0x48127f3b7fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127f917fff8000", + "0x48127f917fff8000", + "0x48127f917fff8000", + "0x48127fed7fff8000", + "0x48127fed7fff8000", + "0x48127fed7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcb9", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff4e", + "0x400a7ff27fff7ffd", + "0x400a7ff37fff7ffe", + "0x400a7ff47fff7fff", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff063", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x2ceb06b137c7c6fdb3c01aed33f7fc5c0a6082a1b70dbb3cfa87c1681e2019e", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff05d", + "0x40137fff7fff8001", + "0x4003800080017ffc", + "0x4003800180017ffd", + "0x4826800180018000", + "0x2", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff168", + "0x480a7ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff04a", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x13e0a7a1b336b4c26698238e24a7d168b97af745bff0dc136e2c06aab4646a5", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff044", + "0x40137fff7fff8001", + "0x4003800080017ff6", + "0x4003800180017ff7", + "0x4003800280017ff8", + "0x4003800380017ff9", + "0x4003800480017ffa", + "0x4003800580017ffb", + "0x4003800680017ffc", + "0x4003800780017ffd", + "0x4826800180018000", + "0x8", + "0x480a7ff47fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff149", + "0x480a7ff57fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff02b", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x2627fa7cdec2db817ac1a12af8a65561e30994bbdccb75b23ceec377bc9c939", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff025", + "0x40137fff7fff8001", + "0x4003800080017ffd", + "0x4826800180018000", + "0x1", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff131", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff013", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x280fc02e581b105f12466833b00f2fff844491297ffc9b074fb6a24ae335b9e", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff00d", + "0x40137fff7fff8001", + "0x4003800080017ffc", + "0x4003800180017ffd", + "0x4826800180018000", + "0x2", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff118", + "0x480a7ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1379ac0624b939ceb9dede92211d7db5ee174fe28be72245b0a1a2abd81c98f", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0f9", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0f3", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x16f9ebc8f853dfd964806dacc1e795299bd19cef7ada920d198edd8685a8443", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffefdd", + "0x480a7ffc7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff082", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0d1", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0cc", + "0x48127ffe7fff8000", + "0x482480017ff08000", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0c7", + "0x48127ffe7fff8000", + "0x482480017fe98000", + "0x3", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0c2", + "0x48127ffe7fff8000", + "0x482480017fe28000", + "0x4", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0bd", + "0x48127ffe7fff8000", + "0x482480017fdb8000", + "0x5", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0b8", + "0x48127ffe7fff8000", + "0x482480017fd48000", + "0x6", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0b3", + "0x48127ffe7fff8000", + "0x48127fcb7fff8000", + "0x48127fcb7fff8000", + "0x48127fd27fff8000", + "0x48127fd87fff8000", + "0x48127fde7fff8000", + "0x48127fe47fff8000", + "0x48127fea7fff8000", + "0x48127ff07fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbe", + "0x480a7ff37fff8000", + "0x48127ffe7fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0a6", + "0x482480017ff88000", + "0x1", + "0x480a7ff87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0a1", + "0x482480017ff28000", + "0x2", + "0x480a7ff97fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff09c", + "0x482480017fec8000", + "0x3", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff097", + "0x482480017fe68000", + "0x4", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff092", + "0x482480017fe08000", + "0x5", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff08d", + "0x482480017fda8000", + "0x6", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff088", + "0x48127fd27fff8000", + "0x48127fd27fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x22d694246e636c185ebc6e470a72a81b23e8f764658482e4ba6f71b3e89f4f6", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff070", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff06a", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x3620fbea5d97f752376a24c4bd8d3593a702443e6fd379134cda24c6652bf46", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff052", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff04c", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x24c6bef42599cac5df32454d99626b76317370946eaa718f2c2b271d2470fd6", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff034", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff02f", + "0x48127ffe7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ff57fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe7", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff028", + "0x482480017ff88000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff023", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff9c", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffef07", + "0x40137fff7fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x480a80007fff8000", + "0x1104800180018000", + "0x4", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff027", + "0x20680017fff7fff", + "0x8", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x48127ffc7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff19", + "0x20680017fff7ffd", + "0xc", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x482680017ffb8000", + "0x1", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe5", + "0x208b7fff7fff7ffe", + "0x400380007ffd7ffb", + "0x400280017ffd7ff9", + "0x400280027ffd7ffa", + "0x400280037ffd7ffb", + "0x400280047ffd7ffc", + "0x400280057ffd7ffd", + "0x400280067ffd7ffe", + "0x400280077ffd7fff", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x482680017ffb8000", + "0x1", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x8", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd2", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x482480017ffc8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeef", + "0x208b7fff7fff7ffe", + "0x400780017fff7ffb", + "0x2", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff67", + "0x400680017fff7fff", + "0x0", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x482480017ffc8000", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6b", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff081", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff07d", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff08c", + "0x48127ffc7fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff087", + "0x48127ffc7fff8000", + "0x48127fc87fff8000", + "0x48127fc87fff8000", + "0x48127fc87fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff272", + "0x48127e6e7fff8000", + "0x48127e6e7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff21", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x482480017ffc8000", + "0x1", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee3", + "0x482480017f998000", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff1c", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x482480017f848000", + "0x1", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe24", + "0x48127ffe7fff8000", + "0x48127fdd7fff8000", + "0x48127ffd7fff8000", + "0x482480017f638000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480a7ff27fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffef86", + "0x40137fff7fff8000", + "0x48127ffe7fff8000", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x4802800380008000", + "0x4802800480008000", + "0x1104800180018000", + "0xca", + "0x480680017fff8000", + "0x1", + "0x48287ffd80007fff", + "0x482480017ffb8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffef7e", + "0x480680017fff8000", + "0x0", + "0x40507ffe7ffa7fff", + "0x480a7ff57fff8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffee70", + "0x48127fe97fff8000", + "0x48127fe97fff8000", + "0x48127fe97fff8000", + "0x480a7ff57fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe78", + "0x400780017fff7ffa", + "0x2", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480a7ff57fff8000", + "0x1104800180018000", + "0xc", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7c", + "0x208b7fff7fff7ffe", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffee53", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe5b", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe79", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef2", + "0x482480017f7d8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x20680017fff7fff", + "0x15", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb8", + "0x400680017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x482480017ffc8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffebc", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x10780017fff7fff", + "0x5", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdc5", + "0x48127ffe7fff8000", + "0x48127fe47fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffee0b", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe13", + "0x400680017fff7ffd", + "0x2", + "0x48127ff67fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeeff", + "0x48127ffe7fff8000", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x480080037ffc8000", + "0x480080047ffb8000", + "0x1104800180018000", + "0x44", + "0x400680017fff7ffd", + "0x1", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe9e", + "0x400680017fff7ffe", + "0x0", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeecb", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffede5", + "0x48127ffb7fff8000", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x48287ffd7ff98000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea2", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x48287ffd7fdd8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd56", + "0x48127ffe7fff8000", + "0x48127fe37fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe80", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe7a", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffedc6", + "0x400a7ffd7fff7ffc", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe80", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x48127fdc7fff8000", + "0x48127fdc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd84", + "0x48127ffe7fff8000", + "0x48127fe37fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffc8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x20680017fff7fff", + "0x16", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdba", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffda7", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480280007ffd8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe34", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffee8b", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffee8e", + "0x48507fff7fde8000", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x9", + "0x48127fd47fff8000", + "0x48127fd47fff8000", + "0x48127ffa7fff8000", + "0x48127fd57fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff20", + "0x208b7fff7fff7ffe", + "0x48127fd47fff8000", + "0x48127fd47fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x480a7ff37fff8000", + "0x480280017ffa8000", + "0x480280037ffa8000", + "0x480280047ffa8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x24", + "0x480680017fff8000", + "0x100000000000000000000000000000001", + "0x480280007ffa8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffee6c", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x9", + "0x48127fdc7fff8000", + "0x48127fdc7fff8000", + "0x48127ffb7fff8000", + "0x480a7ff47fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48127fdc7fff8000", + "0x48127fdc7fff8000", + "0x48127ffb7fff8000", + "0x480a7ff47fff8000", + "0x480280057ffa8000", + "0x480280037ffa8000", + "0x480280047ffa8000", + "0x1104800180018000", + "0x80", + "0x400680017fff7fff", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x0", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdc8", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffee36", + "0x48127ffe7fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7c", + "0x480680017fff8000", + "0x1", + "0x48287ffd80007fff", + "0x48507fff7f778000", + "0x20680017fff7fff", + "0x6", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x208b7fff7fff7ffe", + "0x482480017ffa8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x20680017fff7fff", + "0x6", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x208b7fff7fff7ffe", + "0x400680017fff7ff9", + "0x1", + "0x400b7ff67fff7ffa", + "0x400780017fff7ffb", + "0x2a13a0b91834446212a97be74b73d17ad114b3a82b46ecd87804f9f0b6d16b1", + "0x400780017fff7ff9", + "0x1", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffa7fff8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeee7", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeec8", + "0x48127ffc7fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeec3", + "0x48127ffc7fff8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeeab", + "0x480280027ffd8000", + "0x480280037ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeea7", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeeb6", + "0x48127ffc7fff8000", + "0x480280027ffd8000", + "0x480280037ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeeb1", + "0x48127ffc7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffed0a", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeea8", + "0x48127f807fff8000", + "0x48127f807fff8000", + "0x48127f807fff8000", + "0x48127fb17fff8000", + "0x48127fb17fff8000", + "0x48127fb17fff8000", + "0x48127f087fff8000", + "0x48127f087fff8000", + "0x48127f087fff8000", + "0x48127f397fff8000", + "0x48127f397fff8000", + "0x48127f397fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc04", + "0x480a7ff17fff8000", + "0x480a7ff27fff8000", + "0x48127ffd7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x482680017ffc8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x20680017fff7fff", + "0x1a", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffccf", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480a7ffa7fff8000", + "0x48127ff57fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa7", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcb8", + "0x482480017ffd8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x17", + "0x400780017fff7ffc", + "0x3", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x480a7ffa7fff8000", + "0x48127ff47fff8000", + "0x480a7ffb7fff8000", + "0x482680017ffc8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x482680017ffd8000", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff88", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x482480017ffc8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x20680017fff7fff", + "0x1c", + "0x400780017fff7ffc", + "0x5", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x480a7ffb7fff8000", + "0x482680017ffc8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x482680017ffd8000", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff78", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffec6a", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcd3", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x5", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x0", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffed5f", + "0x20680017fff7fff", + "0x6", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc53", + "0x482480017ffd8000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffe", + "0x20680017fff7fff", + "0x16", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x480a7ffc7fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x480680017fff8000", + "0x2", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc73", + "0x482680017ffc8000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd9", + "0x208b7fff7fff7ffe", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x482680017ffc8000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd0", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffebfd", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0xd876503fb434f7517a7b4ae8d0d5fba27e2fa7b1a9f200deb935316f46fcc3", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffebf7", + "0x40137fff7fff8001", + "0x4003800080017ffd", + "0x4826800180018000", + "0x1", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffed03", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0xb4243e5c50fe8b1ec72787e8bdc6875d9e0ac2cf01c216a38498dad9576672", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffece4", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffecde", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x10064c6264bc3361adf2b26fd01272239473906cb7bbc183b1819e75188451", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffecc6", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffecc0", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x3", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbfa", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc33", + "0x480680017fff8000", + "0x54600", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbb", + "0x40137ffe7fff8000", + "0x40137fff7fff8001", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffecac", + "0x40137ffe7fff8002", + "0x480080037fff8000", + "0x480080047ffe8000", + "0x1104800180018000", + "0x17a", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffecab", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x13", + "0x480a80027fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcb8", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x10780017fff7fff", + "0x5", + "0x480a80027fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x480680017fff8000", + "0x3030302e3030302e303130", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb0", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff63", + "0x48127ffe7fff8000", + "0x48127fe47fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffed23", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeb56", + "0x480680017fff8000", + "0xa66bd575", + "0x400080007ffe7fff", + "0x48127ff97fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffec2a", + "0x480680017fff8000", + "0x1", + "0x400080007ffe7fff", + "0x48127ffc7fff8000", + "0x48127fed7fff8000", + "0x48127fed7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffecfd", + "0x480680017fff8000", + "0x3030302e3030302e303130", + "0x400080017fb97fff", + "0x48127ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x12776a647d4f1a00968b94506ca4f11d94dce59f1c0176d42b47799b3a7f709", + "0x480680017fff8000", + "0x1", + "0x482480017fb58000", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffec14", + "0x48127ffd7fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x0", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x3030302e3030302e303130", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff71", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffcfcfcfd1cfcfcfd1cfcfc8", + "0x20680017fff7fff", + "0x9", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffedc", + "0x400680017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff32", + "0x208b7fff7fff7ffe", + "0x482680017ffc8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x3", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x1", + "0x482680017ffc8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffec30", + "0x48307fff80007ffb", + "0x480680017fff8000", + "0x1", + "0x480280007ffd8000", + "0x48287ffb80007fff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffec29", + "0x48307fff80007ffa", + "0x48507fff7ff88000", + "0x480680017fff8000", + "0x1", + "0x480280047ffd8000", + "0x48287ffb80007fff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffec21", + "0x48307fff80007ffa", + "0x48507fff7ff88000", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x71", + "0x480680017fff8000", + "0x1", + "0x480280017ffd8000", + "0x482480017fff8000", + "0x7a3a789ce9da482e69e83141c8911e81f8f35ea9ea9f95552b726505187dc54", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffec14", + "0x48307fff80007ffa", + "0x480680017fff8000", + "0x1", + "0x480280057ffd8000", + "0x482480017fff8000", + "0x5d5c1a3fe20286254b07d1c7a3c5deee6212333238a9539b50d5b538434650f", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffec0c", + "0x48307fff80007ffa", + "0x48507fff7ff88000", + "0x480680017fff8000", + "0x1", + "0x480280017ffd8000", + "0x482480017fff8000", + "0x41cdc3f5fd8a1d47bab68363c9118d5881ef43ae87776cf67ab466281a7c71a", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffec03", + "0x48307fff80007ffa", + "0x480680017fff8000", + "0x1", + "0x480280057ffd8000", + "0x482480017fff8000", + "0x7185dbd62278ab57baf22283c39683a295993ac3f948e791eda6a95c8f3546b", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffebfb", + "0x48307fff80007ffa", + "0x48507fff7ff88000", + "0x480680017fff8000", + "0x1", + "0x480280017ffd8000", + "0x482480017fff8000", + "0x79d0f0f86eafde75c3de60fc8941dfd48fd161ff6c7d6fbeefd7ac32f869c41", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffebf2", + "0x48307fff80007ffa", + "0x480680017fff8000", + "0x1", + "0x480280057ffd8000", + "0x482480017fff8000", + "0x55ec5f46e7cbbcaded568418b48c2e852eeb4c57d4b9132787fb060f492e950", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffebea", + "0x48307fff80007ffa", + "0x48507fff7ff88000", + "0x480680017fff8000", + "0x1", + "0x480280017ffd8000", + "0x482480017fff8000", + "0x767585c6a9df3642ca09b6b5a76cc1227002859ef7e52d1fa0cfdc57fe83a18", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffebe1", + "0x48307fff80007ffa", + "0x480680017fff8000", + "0x1", + "0x480280057ffd8000", + "0x482480017fff8000", + "0x7fea8e2d857e44a2e8318fceb77e944315ac57e1e28e24329689be5e9662ab3", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffebd9", + "0x48307fff80007ffa", + "0x48507fff7ff88000", + "0x480680017fff8000", + "0x1", + "0x480280017ffd8000", + "0x482480017fff8000", + "0x41cdc3f5fd8a1d47bab68363c9118d5881ef43ae87776cf67ab466281a7c71a", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffebd0", + "0x48307fff80007ffa", + "0x480680017fff8000", + "0x1", + "0x480280057ffd8000", + "0x482480017fff8000", + "0x767585c6a9df3642ca09b6b5a76cc1227002859ef7e52d1fa0cfdc57fe83a18", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffebc8", + "0x48307fff80007ffa", + "0x48507fff7ff88000", + "0x480680017fff8000", + "0x1", + "0x480280017ffd8000", + "0x482480017fff8000", + "0x767585c6a9df3642ca09b6b5a76cc1227002859ef7e52d1fa0cfdc57fe83a18", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffebbf", + "0x48307fff80007ffa", + "0x480680017fff8000", + "0x1", + "0x480280057ffd8000", + "0x482480017fff8000", + "0x5d5c1a3fe20286254b07d1c7a3c5deee6212333238a9539b50d5b538434650f", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffebb7", + "0x48307fff80007ffa", + "0x48507fff7ff88000", + "0x48307fc37fb48000", + "0x48307fd17fff8000", + "0x48307fdf7fff8000", + "0x48307fed7fff8000", + "0x480680017fff8000", + "0x1", + "0x40307ffa7ffe7fff", + "0x10780017fff7fff", + "0x7", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x3", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffc", + "0x3", + "0x208b7fff7fff7ffe", + "0x480280007ffd8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffea99", + "0x480a7ffb7fff8000", + "0x482680017ffc8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x482680017ffd8000", + "0x4", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff5", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffe00365a", + "0x20680017fff7fff", + "0x8", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffff59942a8c", + "0x20680017fff7fff", + "0x8", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffff0ef242bd", + "0x20680017fff7fff", + "0x8", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe82", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x8", + "0x400680017fff7fff", + "0x3030302e3030302e303130", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x3030302e3030302e303130", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe7e", + "0x480680017fff8000", + "0x54600", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe5c", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa38", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x1b", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa79", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa29", + "0x208b7fff7fff7ffe", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x400780017fff7ffc", + "0xa", + "0x480280027ffd8000", + "0x480280037ffd8000", + "0x480280047ffd8000", + "0x480280057ffd8000", + "0x480280067ffd8000", + "0x480280077ffd8000", + "0x480280087ffd8000", + "0x480280097ffd8000", + "0x208b7fff7fff7ffe", + "0x480a7ff47fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeb21", + "0x480080037fff8000", + "0x480080047ffe8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x480a7ff57fff8000", + "0x480680017fff8000", + "0x0", + "0x480080057ff18000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9f8", + "0x48127ff17fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9f5", + "0x48127fed7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9f2", + "0x48127fe97fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9ef", + "0x48127fe57fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9ec", + "0x48127fe17fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9e9", + "0x48127fdd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9e6", + "0x48127fd97fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9e3", + "0x48127fd57fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9e0", + "0x480680017fff8000", + "0x9", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9dc", + "0x480080047fbf8000", + "0x480080047fbe8000", + "0x480080007ffe8000", + "0x480080017ffe8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9ec", + "0x482480017fff8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x48127fb47fff8000", + "0x48127ff37fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480280007ffd8000", + "0x48127ff07fff8000", + "0x480680017fff8000", + "0x2", + "0x48127ff87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcd9", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeae7", + "0x400680017fff7fff", + "0x1", + "0x480280017ffd8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea8", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9ac", + "0x40137fff7fff8000", + "0x480a7ff77fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffd7fff8000", + "0x480a80007fff8000", + "0x1104800180018000", + "0x33", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9a2", + "0x40137fff7fff8001", + "0x48127ffc7fff8000", + "0x480a7ffa7fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x1104800180018000", + "0x8", + "0x48127ffe7fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x48127ffc7fff8000", + "0x480a80017fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x3", + "0x20780017fff7ffb", + "0x6", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480280007ffc8000", + "0x480280017ffc8000", + "0x480280027ffc8000", + "0x480280037ffc8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffea5a", + "0x40137ffe7fff8000", + "0x40137fff7fff8001", + "0x40137ffd7fff8002", + "0x480a7ffd7fff8000", + "0x480a80017fff8000", + "0x480a80007fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe987", + "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", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe96f", + "0x400780017fff8000", + "0x0", + "0x400780017fff8001", + "0x0", + "0x48127ffe7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480280007ffb8000", + "0x1104800180018000", + "0x2b", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe95f", + "0x40137ffd7fff8000", + "0x480280017ffb8000", + "0x40297ffd7fff8001", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x480a7ffb7fff8000", + "0x480280007ffc8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe93d", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe950", + "0x40137ffd7fff8000", + "0x480280017ffc8000", + "0x402580017fff8001", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x27", + "0x48127ffe7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe9", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe924", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffc", + "0x5", + "0x480a7ffa7fff8000", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x482680017ffc8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x40337fff7ffb8000", + "0x480a7ffb7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffd7fff8000", + "0x48317ffd80008000", + "0x400080007ffd7ffe", + "0x480080007ffc8000", + "0x400080017ffc7fff", + "0x482480017ffb8000", + "0x1", + "0x482480017ffb8000", + "0x3", + "0x480080027ffa8000", + "0x20680017fff7ffb", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff8", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffad", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffda", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8f8", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x2f13ac4e210634a9429c73d30d029309c33efe2ec517ba0a816b5dbdb223c12", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8f2", + "0x40137fff7fff8001", + "0x4003800080017ffd", + "0x4826800180018000", + "0x1", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9fe", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8e0", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x2d5554f252005cfdfcec01848daddedc4cb54616070a3d24f6dd14873d6ea0a", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8da", + "0x40137fff7fff8001", + "0x4003800080017ffd", + "0x4826800180018000", + "0x1", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9e6", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8c8", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x281574b432b91bc6e5f95373bed5d82f62493441ebf0dacfd1e88983535bea3", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8c2", + "0x40137fff7fff8001", + "0x4003800080017ffd", + "0x4826800180018000", + "0x1", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9ce", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8b0", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0xcb408fde6c447a75a913cdb28c2432c755b4eac33face35d7973a2b6c9905d", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8aa", + "0x40137fff7fff8001", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4829800180008001", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe9b9", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1be80cf0789e378649f3f793cb9be6de000befe95f70c89ecbc05785b3002db", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe99a", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe994", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1120bfd80f6570cf1dfbbb73c99d568b3636a7350e46efe596b8aa5cd7fc404", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe97c", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe977", + "0x48127ffe7fff8000", + "0x482480017ff08000", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe972", + "0x48127ffe7fff8000", + "0x482480017fe98000", + "0x3", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe96d", + "0x48127ffe7fff8000", + "0x482480017fe28000", + "0x4", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe968", + "0x48127ffe7fff8000", + "0x48127fd97fff8000", + "0x48127fd97fff8000", + "0x48127fe07fff8000", + "0x48127fe67fff8000", + "0x48127fec7fff8000", + "0x48127ff27fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd5", + "0x480a7ff67fff8000", + "0x48127ffe7fff8000", + "0x480a7ff97fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe95e", + "0x482480017ff88000", + "0x1", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe959", + "0x482480017ff28000", + "0x2", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe954", + "0x482480017fec8000", + "0x3", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe94f", + "0x482480017fe68000", + "0x4", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe94a", + "0x48127fde7fff8000", + "0x48127fde7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x333750d7e727a1bc7d547b8213480b5c82853916bebda8eb3f57d3575e783f2", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe932", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe92c", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x400780017fff7ffc", + "0x2", + "0x400780017fff7ffd", + "0x1", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff79", + "0x400680017fff7fff", + "0x0", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7e", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff3a", + "0x48127ffe7fff8000", + "0x48127fe47fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff63", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x10", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff5b", + "0x20680017fff7fff", + "0x8", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8e8", + "0x40137fff7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8d6", + "0x40137fff7fff8001", + "0x48127ffe7fff8000", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x480280037ffd8000", + "0x480280047ffd8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa4a", + "0x40137ff87fff8002", + "0x40137ff97fff8003", + "0x40137ffa7fff8004", + "0x40137ffb7fff8005", + "0x40137ffc7fff8006", + "0x40137ffd7fff8007", + "0x40137ffe7fff8008", + "0x40137fff7fff8009", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff55", + "0x40137ff87fff800a", + "0x40137ff97fff800b", + "0x40137ffa7fff800c", + "0x480680017fff8000", + "0x1", + "0x482680017ffc8000", + "0x41cdc3f5fd8a1d47bab68363c9118d5881ef43ae87776cf67ab466281a7c71a", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8ee", + "0x48307fff80007ffb", + "0x40137fff7fff800d", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x15e", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x8", + "0x480a800a7fff8000", + "0x480a800b7fff8000", + "0x480a800c7fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a800a7fff8000", + "0x480a800b7fff8000", + "0x480a800c7fff8000", + "0x480280057ffd8000", + "0x4826800180008000", + "0x12c", + "0x4826800180018000", + "0x3", + "0x480a80027fff8000", + "0x480a800d7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff56", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe7a8", + "0x40137fff7fff800e", + "0x480680017fff8000", + "0x2614462aa39a5f4dbc8cd316e773d7eaf705e22206ee80944b24b1b708d6dcd", + "0x40028000800e7fff", + "0x40038001800e8002", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe7a1", + "0x40137fff7fff800f", + "0x480280057ffd8000", + "0x40028000800f7fff", + "0x4826800180008000", + "0x12c", + "0x40028001800f7fff", + "0x4826800180018000", + "0x3", + "0x40028002800f7fff", + "0x48127ff37fff8000", + "0x480680017fff8000", + "0x2", + "0x480a800e7fff8000", + "0x480680017fff8000", + "0x3", + "0x480a800f7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe8a7", + "0x48127feb7fff8000", + "0x48127feb7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff0c", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1b", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff04", + "0x40137ff97fff8000", + "0x40137ffb7fff8001", + "0x40137ffc7fff8002", + "0x40137ffd7fff8003", + "0x40137ffe7fff8004", + "0x40137fff7fff8005", + "0x48127ff87fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe896", + "0x40137fff7fff8006", + "0x40137ffe7fff8007", + "0x48127ff47fff8000", + "0x480680017fff8000", + "0x100000000000000000000000000000001", + "0x4802800080068000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe89d", + "0x40137ffe7fff8008", + "0x40137fff7fff8009", + "0x20780017fff8009", + "0x8", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe88e", + "0x480680017fff8000", + "0x1", + "0x40127fff7fff7ffe", + "0x480a80077fff8000", + "0x480a80007fff8000", + "0x480a80087fff8000", + "0x4802800380068000", + "0x4802800480068000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9ca", + "0x40137ff57fff800a", + "0x40137ff67fff800b", + "0x40137ff77fff800c", + "0x40137ff87fff800d", + "0x40137ff97fff800e", + "0x40137ffa7fff800f", + "0x40137ffb7fff8010", + "0x40137ffc7fff8011", + "0x40137ffd7fff8012", + "0x40137ffe7fff8013", + "0x40137fff7fff8014", + "0x20780017fff8009", + "0x8", + "0x482980048000800d", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe874", + "0x480680017fff8000", + "0x1", + "0x40127fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe75e", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x480a800a7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe83a", + "0x48127ffe7fff8000", + "0x480a800b7fff8000", + "0x480a800c7fff8000", + "0x48127ffc7fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x4802800680068000", + "0x48127fef7fff8000", + "0x1104800180018000", + "0x49", + "0x20780017fff8009", + "0x3", + "0x400a80017fff7fff", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffecd", + "0x40137ffe7fff8015", + "0x40137fff7fff8016", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe71d", + "0x40137fff7fff8017", + "0x480680017fff8000", + "0x2baa2e001cee0388bf228b4aad2e304b9af9c83a241d9c8821bbedab67df4d", + "0x4002800080177fff", + "0x4002800180177fc9", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe716", + "0x40137fff7fff8018", + "0x400380008018800d", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x2", + "0x480a80177fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80187fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe823", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe709", + "0x40137fff7fff8019", + "0x480280007ffa8000", + "0x484480017fff8000", + "0x4", + "0x482480017fff8000", + "0x2", + "0x48127ff97fff8000", + "0x480280007ffa8000", + "0x482680017ffa8000", + "0x1", + "0x48327ffc7ffa8000", + "0x480a80197fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd8b", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe6f9", + "0x40137fff7fff801a", + "0x48127ffc7fff8000", + "0x480280007ffa8000", + "0x480a80197fff8000", + "0x480a801a7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd60", + "0x48127ffe7fff8000", + "0x480a80157fff8000", + "0x480a80167fff8000", + "0x48127ffc7fff8000", + "0x480a801a7fff8000", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd92", + "0x480a7ff47fff8000", + "0x48127ffe7fff8000", + "0x480680017fff8000", + "0x696e766f6b65", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffda6", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffda3", + "0x480a7ff67fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffda0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd9c", + "0x480a7ff87fff8000", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffda8", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd95", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd92", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd7d", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffda6", + "0x480a7ff37fff8000", + "0x48127ffd7fff8000", + "0x480a7ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe61", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe27", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdfc", + "0x48127ffe7fff8000", + "0x48127fe67fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe7c8", + "0x48127ffe7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480080037ffc8000", + "0x480080047ffb8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff90e", + "0x400680017fff7ffd", + "0x1", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe69", + "0x400680017fff7fff", + "0x0", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe794", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe6ae", + "0x48127ffb7fff8000", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48287ffd7ff98000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe68", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x48287ffd7fe48000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd8c", + "0x48127ffe7fff8000", + "0x48127fe47fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe4d", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe47", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe692", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe4b", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x48127fe57fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd87", + "0x48127ffe7fff8000", + "0x48127fe47fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x1", + "0x482680017ffd8000", + "0x65da94cf60acfb4631410ec1bacc7b3878ac3aa95e4cc60522398b5e6af2dd9", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe787", + "0x48307fff80007ffb", + "0x480680017fff8000", + "0x1", + "0x482680017ffd8000", + "0x79d0f0f86eafde75c3de60fc8941dfd48fd161ff6c7d6fbeefd7ac32f869c41", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe780", + "0x48307fff80007ffb", + "0x480680017fff8000", + "0x1", + "0x482680017ffd8000", + "0x55ec5f46e7cbbcaded568418b48c2e852eeb4c57d4b9132787fb060f492e950", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe779", + "0x48307fff80007ffb", + "0x48307ff97ff38000", + "0x48307ffe7fff8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ff7", + "0xb", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff67fff8000", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe76d", + "0x48127ffe7fff8000", + "0x480a7ff87fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe768", + "0x48507fff7fde8000", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x1c", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x48127ffa7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdcf", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x48127ffa7fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffddb", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe731", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe734", + "0x48507fff7fde8000", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x8", + "0x48127fd67fff8000", + "0x48127fd67fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff38", + "0x208b7fff7fff7ffe", + "0x48127fd67fff8000", + "0x48127fd67fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0xb", + "0x480a7ff37fff8000", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd56", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe714", + "0x20680017fff7fff", + "0xb", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480a7ff67fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff68c", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe702", + "0x20680017fff7fff", + "0xd", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff11", + "0x480a7ff67fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd4e", + "0x480a7ffd7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7a", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480280037ffb8000", + "0x480280047ffb8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff82b", + "0x40137ff87fff8000", + "0x40137ff97fff8001", + "0x40137ffa7fff8002", + "0x40137ffb7fff8003", + "0x40137ffc7fff8004", + "0x40137ffd7fff8005", + "0x40137ffe7fff8006", + "0x40137fff7fff8007", + "0x40137ff57fff8008", + "0x40137ff67fff8009", + "0x40137ff77fff800a", + "0x480680017fff8000", + "0x1", + "0x4826800180058000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe6d4", + "0x48307fff80007ffb", + "0x4828800080007f78", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe6d0", + "0x48507fff7ffb8000", + "0x48507f747fff8000", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x8", + "0x480280017ff88000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff3d", + "0x480680017fff8000", + "0x1", + "0x40127fff7fff7ffe", + "0x480a80087fff8000", + "0x480a80097fff8000", + "0x480a800a7fff8000", + "0x480a7ff67fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe689", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe678", + "0x40127fff7fff7ff9", + "0x48127ffe7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe672", + "0x400680017fff7fff", + "0x0", + "0x48127ffe7fff8000", + "0x208b7fff7fff7ffe", + "0x480280007ffd8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe5a0", + "0x480280007ffd8000", + "0x480680017fff8000", + "0x100000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe59b", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb05", + "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", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x3030302e3030302e303130", + "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", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe62b", + "0x48127ffe7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe6d5", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff97e", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480280037ffb8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe6da", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9b2", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480280037ffb8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe6be", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9c3", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480280037ffb8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff47fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff4a", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff614", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x7", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x480280037ffd8000", + "0x480280047ffd8000", + "0x480280057ffd8000", + "0x480280067ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdc", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x480280037ffb8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff37fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff19", + "0x480a7ff47fff8000", + "0x480a7ff57fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffca8", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe5cb", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127ff47fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff62e", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x8", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x480280037ffd8000", + "0x480280047ffd8000", + "0x480280057ffd8000", + "0x480280067ffd8000", + "0x480280077ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd2", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe7", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x480280037ffb8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffede", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe487", + "0x48127ffc7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffef", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480280037ffb8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec0", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff618", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd87", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffef", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480280037ffb8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea2", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff84c", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff63c", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480280037ffb8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe80", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff65d", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480280037ffb8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9aa", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff52c", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x480280037ffb8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", + "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", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff964", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff49c", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x3", + "0x4003800080007ffb", + "0x400380007ffd7ffb", + "0x402780017ffd8001", + "0x1", + "0x4826800180008000", + "0x1", + "0x484680017ffb8000", + "0x8", + "0x40317fff7ffe8002", + "0x4826800180008000", + "0x1", + "0x480a7ffc7fff8000", + "0x484680017ffb8000", + "0x8", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe39f", + "0x480a80017fff8000", + "0x4829800080008002", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", + "0x40137ffb7fff8000", + "0x40137ffc7fff8001", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x48127ffb7fff8000", + "0x480280037ffb8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff932", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff4b5", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ff6", + "0x4003800180007ff7", + "0x4003800280007ff8", + "0x4003800380007ff9", + "0x4003800480007ffa", + "0x4003800580007ffb", + "0x4003800680007ffc", + "0x4826800180008000", + "0x7", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", + "0x48127ff87fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ffb7fff8000", + "0x480280037ffb8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff59b", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffb", + "0x4003800180007ffc", + "0x4826800180008000", + "0x2", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ffb7fff8000", + "0x480280037ffb8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8e7", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff817", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x480280037ffb8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x2a", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x480280027ffb8000", + "0x480280017ffd8000", + "0x400080007ffe7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x48307fff7ffe8000", + "0x402a7ffd7ffc7fff", + "0x480280027ffb8000", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280037ffb8000", + "0x482480017ffc8000", + "0x1", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x482680017ffd8000", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdc", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe3", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ffb7fff8000", + "0x48127ff27fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff895", + "0x480a7ff97fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff630", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x48127ffa7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x480280027ffb8000", + "0x480280017ffd8000", + "0x400080007ffe7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x48307fff7ffe8000", + "0x402a7ffd7ffc7fff", + "0x480280027ffb8000", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280037ffb8000", + "0x482480017ffc8000", + "0x1", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x482680017ffd8000", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd5", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe3", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ffb7fff8000", + "0x48127ff27fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffaa8", + "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", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcf8", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff334", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa66", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480280037ffb8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffadc", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ff8", + "0x4003800180007ff9", + "0x4003800280007ffa", + "0x4003800380007ffb", + "0x4003800480007ffc", + "0x4826800180008000", + "0x5", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffea", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x48127ffb7fff8000", + "0x480280037ffb8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff67fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcb3", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffab8", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x3", + "0x4003800080007ffb", + "0x400380007ffd7ffb", + "0x402780017ffd8001", + "0x1", + "0x4826800180008000", + "0x1", + "0x40297ffb7fff8002", + "0x4826800180008000", + "0x1", + "0x480a7ffc7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe232", + "0x480a80017fff8000", + "0x4829800080008002", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x400080007ffe7fff", + "0x482680017ffd8000", + "0x1", + "0x480280007ffd8000", + "0x48307fff7ffe8000", + "0x482480017fff8000", + "0x3", + "0x402a7ffd7ffc7fff", + "0x480280027ffb8000", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x482480017ffd8000", + "0x1", + "0x480280007ffd8000", + "0x482680017ffd8000", + "0x1", + "0x480080007ff88000", + "0x480080017ff78000", + "0x480080027ff68000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffca", + "0x40137ffb7fff8000", + "0x40137ffc7fff8001", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd2", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x48127ffb7fff8000", + "0x480280037ffb8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc6e", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb38", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff5", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480280037ffb8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc56", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff600", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb39", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480280037ffb8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb4b", + "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", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc1d", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb30", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff5", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480280037ffb8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x3", + "0x480a7ff67fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe293", + "0x40137fff7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe281", + "0x40137fff7fff8001", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe2ac", + "0x40137fff7fff8002", + "0x48127ffe7fff8000", + "0x480a7ff77fff8000", + "0x480a7ff97fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff73d", + "0x480a80007fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb75", + "0x480a80007fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff417", + "0x480a7ff87fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480a80027fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff7b8", + "0x400680017fff7fff", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480a80027fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb76", + "0x400680017fff7ffe", + "0x1", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x480a7ffa7fff8000", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480a80027fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x48127ff37fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff40c", + "0x400680017fff7fff", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x400080007ffe7fff", + "0x482680017ffd8000", + "0x1", + "0x480280007ffd8000", + "0x484480017fff8000", + "0x4", + "0x48307fff7ffd8000", + "0x480280027ffb8000", + "0x480080007ffe8000", + "0x400080017ffe7fff", + "0x482480017ffd8000", + "0x1", + "0x480080007ffc8000", + "0x48307fff7ffe8000", + "0x402a7ffd7ffc7fff", + "0x480280027ffb8000", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280037ffb8000", + "0x482480017ffc8000", + "0x2", + "0x480280007ffd8000", + "0x482680017ffd8000", + "0x1", + "0x480080007ff38000", + "0x482480017ff28000", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff9c", + "0x40780017fff7fff", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x48127ffa7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff47fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe245", + "0x48127ffe7fff8000", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff718", + "0x208b7fff7fff7ffe", + "0x480280027ffb8000", + "0x480280047ffd8000", + "0x400080007ffe7fff", + "0x482680017ffd8000", + "0x5", + "0x480280047ffd8000", + "0x48307fff7ffe8000", + "0x402a7ffd7ffc7fff", + "0x480280027ffb8000", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x482480017ffd8000", + "0x1", + "0x480280037ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x480280037ffd8000", + "0x480280047ffd8000", + "0x482680017ffd8000", + "0x5", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdc", + "0x40780017fff7fff", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff1a1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff854", + "0x480680017fff8000", + "0x0", + "0x40307ffe7fe77fff", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe207", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x480a7ffb7fff8000", + "0x480080057ffb8000", + "0x480080037ffa8000", + "0x480080047ff98000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff436", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280037ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdb", + "0x40780017fff7fff", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x48127ffa7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe1e0", + "0x40137fff7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb34", + "0x480a80007fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb38", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480280017ffb8000", + "0x480a80007fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8bb", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0xb", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe0ab", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6ee", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x3", + "0x4003800080007ffb", + "0x400380007ffd7ffb", + "0x402780017ffd8001", + "0x1", + "0x4826800180008000", + "0x1", + "0x40297ffb7fff8002", + "0x4826800180008000", + "0x1", + "0x480a7ffc7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffe094", + "0x480a80017fff8000", + "0x4829800080008002", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x400080007ffe7fff", + "0x482680017ffd8000", + "0x1", + "0x480280007ffd8000", + "0x484480017fff8000", + "0x4", + "0x48307fff7ffd8000", + "0x480280027ffb8000", + "0x480080007ffe8000", + "0x400080017ffe7fff", + "0x482480017ffd8000", + "0x1", + "0x480080007ffc8000", + "0x48307fff7ffe8000", + "0x402a7ffd7ffc7fff", + "0x480280027ffb8000", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x482480017ffd8000", + "0x2", + "0x480280007ffd8000", + "0x482680017ffd8000", + "0x1", + "0x480080007ff48000", + "0x482480017ff38000", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa7", + "0x40137ffb7fff8000", + "0x40137ffc7fff8001", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcb", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x48127ffb7fff8000", + "0x480280037ffb8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe" + ], + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/040c1a75a067ad9358bdfff06207e34ccb659e190eaf6546295e7c197db119e4.cairo": "// Create a reference to ret_value.signer as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.signer, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nassert [__return_value_ptr + 2] = [__return_value_tmp + 2];\nassert [__return_value_ptr + 3] = [__return_value_tmp + 3];\nassert [__return_value_ptr + 4] = [__return_value_tmp + 4];\nassert [__return_value_ptr + 5] = [__return_value_tmp + 5];\nassert [__return_value_ptr + 6] = [__return_value_tmp + 6];\nlet __return_value_ptr = __return_value_ptr + 7;\n", + "autogen/starknet/arg_processor/08a4723f90e78bf4498023f1ff5d4f8db6ed6f08e4ba0d26d1e67d7eef1be5e4.cairo": "// Create a reference to request as felt*.\nlet __calldata_tmp: felt* = cast(&request, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/0d4f06a16f5b584968bff2bede6b79820335ee1e8777660edff0ae20878e009d.cairo": "assert [__calldata_ptr] = num_signers;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/0ffc865b197966539399fa26baf449cc54e0623dfa6e34c5df6a0923cd38120c.cairo": "// Create a reference to ret_value.pending_multisig_transaction as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.pending_multisig_transaction, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nassert [__return_value_ptr + 2] = [__return_value_tmp + 2];\nassert [__return_value_ptr + 3] = [__return_value_tmp + 3];\nassert [__return_value_ptr + 4] = [__return_value_tmp + 4];\nlet __return_value_ptr = __return_value_ptr + 5;\n", + "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.signers_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.signers_len * 8;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.signers,\n len=ret_value.signers_len * 8);\n", + "autogen/starknet/arg_processor/19e653c0ea9d1ffa94c0fc1aa745c0bd8e37c5f8ab1d0e735a2c5c3f37a3dc97.cairo": "assert [__return_value_ptr] = ret_value.multisig_num_signers;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/1e685535e26ead7c7414f5feeeb2e28bc52d93f40700caef24a3ce3ebdd87114.cairo": "let __calldata_arg_signature_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.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, src.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/289b903068c37100bffaa762422f0398f600a74284e43aa43071cf8307ef93a2.cairo": "let __calldata_arg_removed_signer_id = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo": "assert [__return_value_ptr] = ret_value.res;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/2cf747b33fafe4b7e0f1cfb0079d61cecba83ef4f51af2d9bea36803bc3f4e9f.cairo": "assert [__return_value_ptr] = ret_value.publicKey;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/2f3ee0c40ff51e0a6b656d86a4b3cff3922cef35fa0c7ed06fd4a94c6824c7ac.cairo": "// Create a reference to signer as felt*.\nlet __calldata_tmp: felt* = cast(&signer, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nassert [__calldata_ptr + 1] = [__calldata_tmp + 1];\nassert [__calldata_ptr + 2] = [__calldata_tmp + 2];\nassert [__calldata_ptr + 3] = [__calldata_tmp + 3];\nassert [__calldata_ptr + 4] = [__calldata_tmp + 4];\nassert [__calldata_ptr + 5] = [__calldata_tmp + 5];\nassert [__calldata_ptr + 6] = [__calldata_tmp + 6];\nlet __calldata_ptr = __calldata_ptr + 7;\n", + "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo": "let __calldata_arg_index = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/3baa70f41d32115ce07d3735705ccd7d327af99af4825960d2e992aa4969dfc8.cairo": "assert [__calldata_ptr] = public_key;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/4c9cfae2d805caad788858109f7917946f7591d919871b715f9c75f50dc558cf.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_pending_calldata_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_pending_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_pending_calldata_len * 1;\n", + "autogen/starknet/arg_processor/4ed99c1404299fecfc6921a59fa59a26a0dfb1022ca32b0708063148e631d226.cairo": "let __calldata_arg_num_signers = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo": "assert [__return_value_ptr] = ret_value.success;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.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/6a1a539ae30d2e62b23ed0bb735b8c83307bbbe2a0921f8d1bc90561bfef7d31.cairo": "let __calldata_arg_contract_address_salt = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/6a5e642bec1f7526308a73478077ef051a66625a56a9015e448ad8b892166ca8.cairo": "let __calldata_arg_class_hash = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo": "let __calldata_arg_interfaceId = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/748d18cac905d6c9f6a503fa8dd13a6de55f993197e2ef20a4c0b60eec909330.cairo": "assert [__calldata_ptr] = signer_id;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/7dc21e5febb3934461e79e32b9e043909f57ea5d5d88047175f79be259d9fdd5.cairo": "let __calldata_arg_call_array_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/81481b77e98c23bf09409bf36feae804b99043d0f280564ccb359aeee5de8778.cairo": "assert [__return_value_ptr] = ret_value.isValid;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/81c34a0e7357f3cf9d970047a3024f5f555ab96c43f3a0a1d1a9cf66f1fa9387.cairo": "let __calldata_arg_pending_calldata_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/8442669a24c29ff6d5063db132f71e228356ef131c5c70fde623342799c14bb2.cairo": "let __calldata_arg_newPublicKey = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/88572df7240e94cd487c9258689a098ed6207c80c1adc8922a76a43fda1f9613.cairo": "assert [__return_value_ptr] = ret_value.is_valid;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/89e68eb972ea52576ec6f4fe6eb36904594333061ce4c3acd5b4268cdcd8e605.cairo": "let __calldata_arg_pending_nonce = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/8bcfd714ee91d80b61c7813e505d15190aa71d6c8dea8afb2f1b3a6ecff8198a.cairo": "// Create a reference to ret_value.deferred_request as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.deferred_request, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.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/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo": "assert [__calldata_ptr] = implementation;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/91c0b48f9b687319e236ed3867bdad18876ffe8f6e486b369a967770f2259384.cairo": "let __calldata_arg_new_implementation = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/96869a0c58eb53e4b63493bbbd6a162dc4c73facf3cd4d42f20eed0fa34e314c.cairo": "// Create a reference to ret_value.deferred_request as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.deferred_request, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/9952d40916ad57c0016d55b22fd981e657df5a1c275eca65a3ff028a2ac523a2.cairo": "let __calldata_arg_added_signer = [\n cast(__calldata_ptr, src.signers.library.SignerModel*)];\nlet __calldata_ptr = __calldata_ptr + 7;\n", + "autogen/starknet/arg_processor/9e5ba27f017ac85a82f4475872b7cb091c4954c0778059c55bdcd6c664450c68.cairo": "// Create a reference to request as felt*.\nlet __calldata_tmp: felt* = cast(&request, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nassert [__calldata_ptr + 1] = [__calldata_tmp + 1];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/a4d65885d59190e61919a5d14684d640e682c52c8bcb7af6cd1a3838fe034562.cairo": "assert [__return_value_ptr] = ret_value.etd_sec;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/a94dda29e6155c8428e55e4b0656b473b2ccbbae6920c522f37e0c86809abb87.cairo": "let __calldata_arg_pending_max_fee = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/af963d40fa951dd6f2d8ef1251d18ae5a87525676e4d942d0ae1695f0ca50da2.cairo": "let __calldata_arg_pending_transaction_version = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b07888c526f97925bd7037f4dcde235d5ffb2d92354828348c217678c2166713.cairo": "let __calldata_arg_hash = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo": "let __calldata_arg_calldata_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b7575a248efa8d8ddc79c8f321c34c1754f8a22798fc799707b8db9c1ae06ea9.cairo": "let __calldata_arg_remove_index = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.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/c2f1fff90123af1ac991a5f7ea9000b626c118903b694b399e02806d44fb5def.cairo": "assert [__return_value_ptr] = ret_value.response_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", + "autogen/starknet/arg_processor/cb03049f16baf658a12148340f5c58b302db1daa4df59802c7b16fd0a4436af0.cairo": "assert [__return_value_ptr] = ret_value.signer_id;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/d1c875a8661952f175ca3071afcb144cd34daeabf262550fbe7da00eb06becf8.cairo": "assert [__return_value_ptr] = ret_value.signers_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/d7e4f5c68032bb401a79c4aa412eb388d11d9561e11753b7ef22fd4283e31f6d.cairo": "let __calldata_arg_signer = [\n cast(__calldata_ptr, src.signers.library.SignerModel*)];\nlet __calldata_ptr = __calldata_ptr + 7;\n", + "autogen/starknet/arg_processor/d8a789811823bf1b22d3771cebbac436edd10b8396641ce4c5ef2466717ebfc2.cairo": "let __calldata_arg_from_version = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e873b36f70ba086858da6461bd90d871fa83ad20a246f708b0b2e900747d6cbd.cairo": "let __calldata_arg_implementation_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/eab2f02bb7ddd7dc10d7bea0d0d4bf773a1eb3b40ca36fd52031f4d2a9a62001.cairo": "let __calldata_arg_initializer_selector = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/fcae171a11efdbb3d6f68abb567d4209a3b5b40b77b7badc1698f31527b74fb9.cairo": "let __calldata_arg_public_key = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/event/AccountInitialized/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/AccountInitialized/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/AccountInitialized/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/MultisigDisableRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/MultisigDisableRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/MultisigDisableRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/MultisigDisableRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/MultisigDisableRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/MultisigDisableRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/MultisigDisabled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/MultisigDisabled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/MultisigDisabled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/MultisigSet/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/MultisigSet/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/MultisigSet/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/SignerAdded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/SignerAdded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/SignerAdded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/SignerRemoveRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/SignerRemoveRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/SignerRemoveRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/SignerRemoveRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/SignerRemoveRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/SignerRemoveRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/SignerRemoved/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/SignerRemoved/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/SignerRemoved/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/external/__execute__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/__execute__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_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,);\nlet (range_check_ptr, retdata_size, retdata) = __execute___encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/__execute__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/__execute__/a8ca7837cb8bee331484b20a49f0effa5cacdf45c9289aa5630ef98fa0f263bf.cairo": "func __execute__() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, ecdsa_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", + "autogen/starknet/external/__execute__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/__execute__/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/__validate__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/__validate__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, ecdsa_ptr=ecdsa_ptr, range_check_ptr=range_check_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,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/__validate__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/__validate__/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, starkware.cairo.common.cairo_builtins.SignatureBuiltin**)];\n", + "autogen/starknet/external/__validate__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/__validate_declare__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/__validate_declare__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/__validate_declare__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/__validate_declare__/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, starkware.cairo.common.cairo_builtins.SignatureBuiltin**)];\n", + "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, ecdsa_ptr=ecdsa_ptr, range_check_ptr=range_check_ptr}(class_hash=__calldata_arg_class_hash,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/__validate_declare__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/__validate_deploy__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr, ecdsa_ptr=ecdsa_ptr}(class_hash=__calldata_arg_class_hash, contract_address_salt=__calldata_arg_contract_address_salt, implementation_address=__calldata_arg_implementation_address, initializer_selector=__calldata_arg_initializer_selector, calldata_len=__calldata_arg_calldata_len, calldata=__calldata_arg_calldata,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/__validate_deploy__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/__validate_deploy__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/__validate_deploy__/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, starkware.cairo.common.cairo_builtins.SignatureBuiltin**)];\n", + "autogen/starknet/external/__validate_deploy__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/add_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/add_signer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/add_signer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(signer=__calldata_arg_signer,);\nlet (range_check_ptr, retdata_size, retdata) = add_signer_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/add_signer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/add_signer/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/cancel_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/cancel_deferred_disable_multisig_req/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/cancel_deferred_disable_multisig_req/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo": "let ret_value = __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/cancel_deferred_disable_multisig_req/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/cancel_deferred_disable_multisig_req/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/cancel_deferred_disable_multisig_req/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(removed_signer_id=__calldata_arg_removed_signer_id,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/cancel_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/cancel_deferred_remove_signer_req/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/cancel_deferred_remove_signer_req/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/cancel_deferred_remove_signer_req/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/cancel_deferred_remove_signer_req/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/disable_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/disable_multisig/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/disable_multisig/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo": "let ret_value = __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/disable_multisig/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/disable_multisig/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/disable_multisig/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/disable_multisig_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/disable_multisig_with_etd/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/disable_multisig_with_etd/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo": "let ret_value = __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/disable_multisig_with_etd/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/disable_multisig_with_etd/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/disable_multisig_with_etd/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/getPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.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) = getPublicKey_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getPublicKey/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getPublicKey/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getPublicKey/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getPublicKey/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/get_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_deferred_disable_multisig_req/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_deferred_disable_multisig_req/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_deferred_disable_multisig_req/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.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_deferred_disable_multisig_req_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/get_deferred_disable_multisig_req/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/get_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_deferred_remove_signer_req/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.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_deferred_remove_signer_req_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/get_deferred_remove_signer_req/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_deferred_remove_signer_req/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_deferred_remove_signer_req/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/get_execution_time_delay/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_execution_time_delay/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_execution_time_delay/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_execution_time_delay/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_execution_time_delay/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.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_execution_time_delay_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/get_impl_version/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_impl_version/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_impl_version/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.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_impl_version_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/get_impl_version/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_impl_version/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.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_multisig_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/get_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_multisig/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_multisig/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_multisig/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_multisig/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/get_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_pending_multisig_transaction/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_pending_multisig_transaction/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_pending_multisig_transaction/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_pending_multisig_transaction/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.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_pending_multisig_transaction_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/get_public_key/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_public_key/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.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/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_public_key/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_public_key/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_public_key/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/get_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_signer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_signer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_signer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_signer/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(index=__calldata_arg_index,);\nlet (range_check_ptr, retdata_size, retdata) = get_signer_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/get_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_signers/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_signers/770afaddb5e105be61160c928ac04947393d311d6804577ad1cdc11c7a9aefed.cairo": "func get_signers() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, ecdsa_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", + "autogen/starknet/external/get_signers/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_signers/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_signers/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.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_signers_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/initializer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/initializer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/initializer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/initializer/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.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/isValidSignature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/isValidSignature/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/isValidSignature/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/isValidSignature/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, starkware.cairo.common.cairo_builtins.SignatureBuiltin**)];\n", + "autogen/starknet/external/isValidSignature/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, ecdsa_ptr=ecdsa_ptr, range_check_ptr=range_check_ptr}(hash=__calldata_arg_hash, signature_len=__calldata_arg_signature_len, signature=__calldata_arg_signature,);\nlet (range_check_ptr, retdata_size, retdata) = isValidSignature_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/is_valid_signature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/is_valid_signature/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/is_valid_signature/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, ecdsa_ptr=ecdsa_ptr, range_check_ptr=range_check_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/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/is_valid_signature/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, starkware.cairo.common.cairo_builtins.SignatureBuiltin**)];\n", + "autogen/starknet/external/is_valid_signature/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/migrate_storage/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/migrate_storage/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/migrate_storage/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/migrate_storage/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(from_version=__calldata_arg_from_version,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/migrate_storage/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/remove_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/remove_signer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/remove_signer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/remove_signer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/remove_signer/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(index=__calldata_arg_index,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/remove_signer_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/remove_signer_with_etd/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/remove_signer_with_etd/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/remove_signer_with_etd/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/remove_signer_with_etd/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(index=__calldata_arg_index,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/return/__execute__/372012ab0384bb7289ee5ea400e8c2c07e9056ce02e109689ce1ae824183c43b.cairo": "func __execute___encode_return(ret_value: (response_len: felt, response: felt*), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/add_signer/65d869f72406ce95295ebd34960a9e027030b01d75c34afe506d5c5773fb7e01.cairo": "func add_signer_encode_return(ret_value: (signer_id: felt), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/getPublicKey/3b684397f6604a19c1ca2d5c5582ea20120aa5ea9a960892c6c6ecfc1b12fe56.cairo": "func getPublicKey_encode_return(ret_value: (publicKey: felt), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/get_deferred_disable_multisig_req/050b89ad40b8d5b7d4c7ecec1d1b317683ee783a1f08021b587bb3834b1bb499.cairo": "func get_deferred_disable_multisig_req_encode_return(ret_value: (deferred_request: src.multisig.library.DeferredMultisigDisableRequest), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/get_deferred_remove_signer_req/fcb83925dd6a58abdf318060237b8c313eb163508e5833b81d052cbb1307862a.cairo": "func get_deferred_remove_signer_req_encode_return(ret_value: (deferred_request: src.signers.library.DeferredRemoveSignerRequest), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/get_execution_time_delay/88acf93486edaae4c7611b9a2ec6183cbbe7a77b8e5df612514739bdf84703e0.cairo": "func get_execution_time_delay_encode_return(ret_value: (etd_sec: felt), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/get_impl_version/d207ac3afdeeb0089b1dce5ed0a50501c8bcd71f7e9aa8501afe91f6f87c28c2.cairo": "func get_impl_version_encode_return(ret_value: (res: felt), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/get_multisig/19fcfdf9eb787f71849bb6933802c0cd8381360134d1b776a07a45ba0f9a63d7.cairo": "func get_multisig_encode_return(ret_value: (multisig_num_signers: felt), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/get_pending_multisig_transaction/2830f97ccd4a7c7b43d472cfd1d7ec2ad98be60e2305fabc7f81d48a53c6e9aa.cairo": "func get_pending_multisig_transaction_encode_return(ret_value: (pending_multisig_transaction: src.multisig.library.PendingMultisigTransaction), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/get_public_key/ed379cb96da5de591f6577d7ab0fb7b2d10d45df89d27194a22cb4bf5f2e7ef0.cairo": "func get_public_key_encode_return(ret_value: (res: felt), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/get_signer/f83631e226461bb8dab6ca17f165b2dda2114ea35ea990aa48920d3d6058cbb6.cairo": "func get_signer_encode_return(ret_value: (signer: src.signers.library.SignerModel), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/get_signers/cc640d8ea548d96a440607e96522d7d854b1dfbced5cdeece12d53b2fe2d3292.cairo": "func get_signers_encode_return(ret_value: (signers_len: felt, signers: src.signers.library.IndexedSignerModel*), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/isValidSignature/788c6a8b6b18c5871daf6f002535597a864dc3acd6177843eee7ab2e36e975c5.cairo": "func isValidSignature_encode_return(ret_value: (isValid: felt), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/is_valid_signature/ec8a9039a7d2a620956afa7c71e53a3fd58f82e0018be06c207933cd1bc8eac4.cairo": "func is_valid_signature_encode_return(ret_value: (is_valid: felt), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/sign_pending_multisig_transaction/1b39d02cdf8b50a974cbe566dafb13c4d23ac1f45b77f6a1cad040a202b56e0b.cairo": "func sign_pending_multisig_transaction_encode_return(ret_value: (response_len: felt, response: felt*), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo": "func supportsInterface_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/return/swap_signers/03099b3a3412dfc84134e65bc8d820ebea31b838a428db7368429e9c5e663ba5.cairo": "func swap_signers_encode_return(ret_value: (signer_id: felt), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/external/setPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setPublicKey/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setPublicKey/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setPublicKey/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setPublicKey/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(newPublicKey=__calldata_arg_newPublicKey,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/set_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/set_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(num_signers=__calldata_arg_num_signers,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/set_multisig/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/set_multisig/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/set_multisig/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/set_multisig/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/sign_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(pending_calldata_len=__calldata_arg_pending_calldata_len, pending_calldata=__calldata_arg_pending_calldata, pending_nonce=__calldata_arg_pending_nonce, pending_max_fee=__calldata_arg_pending_max_fee, pending_transaction_version=__calldata_arg_pending_transaction_version,);\nlet (range_check_ptr, retdata_size, retdata) = sign_pending_multisig_transaction_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/sign_pending_multisig_transaction/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/sign_pending_multisig_transaction/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/sign_pending_multisig_transaction/9b9dcdad6b9f8914336250ac7874067b3d8741f80858ea9aea1a6008cef3fa8f.cairo": "func sign_pending_multisig_transaction() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, ecdsa_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", + "autogen/starknet/external/sign_pending_multisig_transaction/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/sign_pending_multisig_transaction/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/supportsInterface/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/supportsInterface/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/supportsInterface/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/supportsInterface/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.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/external/supportsInterface/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/swap_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(remove_index=__calldata_arg_remove_index, added_signer=__calldata_arg_added_signer,);\nlet (range_check_ptr, retdata_size, retdata) = swap_signers_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/swap_signers/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/swap_signers/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/swap_signers/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/swap_signers/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/external/upgrade/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(new_implementation=__calldata_arg_new_implementation,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/upgrade/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/upgrade/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/upgrade/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/upgrade/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", + "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo": "namespace Account_deferred_remove_signer {\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 }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n res: DeferredRemoveSignerRequest\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n value: DeferredRemoveSignerRequest\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo": "namespace Account_deferred_remove_signer {\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 = 1039651011363525515948361154266089311387521894640328245112141052682036514774;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n res: DeferredRemoveSignerRequest\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\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 tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, DeferredRemoveSignerRequest*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n value: DeferredRemoveSignerRequest\n ) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo": "namespace Account_execution_time_delay_sec {\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 }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (etd: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\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 }\n}", + "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo": "namespace Account_execution_time_delay_sec {\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 = 318282615767336963149749833198806753140642073758831345755744923003368466034;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (etd: 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 }\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 }\n}", + "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 }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n public_key: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\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 }\n}", + "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 }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n public_key: felt\n ) {\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 }\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 }\n}", + "autogen/starknet/storage_var/Account_signers/decl.cairo": "namespace Account_signers {\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}(idx: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(idx: felt) -> (\n signer: SignerModel\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n idx: felt, value: SignerModel\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Account_signers/impl.cairo": "namespace Account_signers {\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}(idx: felt) -> (res: felt) {\n let res = 649528432280903732502701014189914565872489836615108459386847983549288186947;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&idx, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(idx: felt) -> (\n signer: SignerModel\n ) {\n let (storage_addr) = addr(idx);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n let (__storage_var_temp2) = storage_read(address=storage_addr + 2);\n let (__storage_var_temp3) = storage_read(address=storage_addr + 3);\n let (__storage_var_temp4) = storage_read(address=storage_addr + 4);\n let (__storage_var_temp5) = storage_read(address=storage_addr + 5);\n let (__storage_var_temp6) = storage_read(address=storage_addr + 6);\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 tempvar __storage_var_temp1: felt = __storage_var_temp1;\n tempvar __storage_var_temp2: felt = __storage_var_temp2;\n tempvar __storage_var_temp3: felt = __storage_var_temp3;\n tempvar __storage_var_temp4: felt = __storage_var_temp4;\n tempvar __storage_var_temp5: felt = __storage_var_temp5;\n tempvar __storage_var_temp6: felt = __storage_var_temp6;\n return ([cast(&__storage_var_temp0, SignerModel*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n idx: felt, value: SignerModel\n ) {\n let (storage_addr) = addr(idx);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n storage_write(address=storage_addr + 2, value=[cast(&value, felt) + 2]);\n storage_write(address=storage_addr + 3, value=[cast(&value, felt) + 3]);\n storage_write(address=storage_addr + 4, value=[cast(&value, felt) + 4]);\n storage_write(address=storage_addr + 5, value=[cast(&value, felt) + 5]);\n storage_write(address=storage_addr + 6, value=[cast(&value, felt) + 6]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo": "namespace Account_signers_max_index {\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 }\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 }\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 }\n}", + "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo": "namespace Account_signers_max_index {\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 = 984860285271018030981534590364360263474833852747099610939677161459859191030;\n return (res=res);\n }\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 }\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 }\n}", + "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo": "namespace Account_signers_num_hw_signers {\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 }\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 }\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 }\n}", + "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo": "namespace Account_signers_num_hw_signers {\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 = 1530198224149151010466203689066014162945986256915464896983564053521332617030;\n return (res=res);\n }\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 }\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 }\n}", + "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo": "namespace Account_storage_migration_version {\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 }\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 }\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 }\n}", + "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo": "namespace Account_storage_migration_version {\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 = 28313022832526220435919396777106196834975646952251820764508704287550374993;\n return (res=res);\n }\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 }\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 }\n}", + "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo": "namespace Multisig_deferred_disable_request {\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 }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n res: DeferredMultisigDisableRequest\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n value: DeferredMultisigDisableRequest\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo": "namespace Multisig_deferred_disable_request {\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 = 1447855614171819785795068180973013872717507468187387414846925811817646621682;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n res: DeferredMultisigDisableRequest\n ) {\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, DeferredMultisigDisableRequest*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n value: DeferredMultisigDisableRequest\n ) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo": "namespace Multisig_num_signers {\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 }\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 }\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 }\n}", + "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo": "namespace Multisig_num_signers {\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 = 788902795926418806765032269286873310937319231848513047370333908653315195611;\n return (res=res);\n }\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 }\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 }\n}", + "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo": "namespace Multisig_pending_transaction {\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 }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n res: PendingMultisigTransaction\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n value: PendingMultisigTransaction\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo": "namespace Multisig_pending_transaction {\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 = 484198849406910540335730968979878952694280198321681144771220478786407482372;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n res: PendingMultisigTransaction\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n let (__storage_var_temp2) = storage_read(address=storage_addr + 2);\n let (__storage_var_temp3) = storage_read(address=storage_addr + 3);\n let (__storage_var_temp4) = storage_read(address=storage_addr + 4);\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 tempvar __storage_var_temp1: felt = __storage_var_temp1;\n tempvar __storage_var_temp2: felt = __storage_var_temp2;\n tempvar __storage_var_temp3: felt = __storage_var_temp3;\n tempvar __storage_var_temp4: felt = __storage_var_temp4;\n return ([cast(&__storage_var_temp0, PendingMultisigTransaction*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n value: PendingMultisigTransaction\n ) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n storage_write(address=storage_addr + 2, value=[cast(&value, felt) + 2]);\n storage_write(address=storage_addr + 3, value=[cast(&value, felt) + 3]);\n storage_write(address=storage_addr + 4, value=[cast(&value, felt) + 4]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Proxy_admin/decl.cairo": "namespace Proxy_admin {\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 }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n proxy_admin: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\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 }\n}", + "autogen/starknet/storage_var/Proxy_admin/impl.cairo": "namespace Proxy_admin {\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 = 420809302088575566661732159258626015934899866033455122060647015585080981641;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n proxy_admin: felt\n ) {\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 }\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 }\n}", + "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo": "namespace Proxy_implementation_address {\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 }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n implementation_address: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\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 }\n}", + "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo": "namespace Proxy_implementation_address {\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 = 1662968741416162122709795668327058413808168082301235317239158738933362048792;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n implementation_address: felt\n ) {\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 }\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 }\n}", + "autogen/starknet/storage_var/Proxy_initialized/decl.cairo": "namespace Proxy_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 }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n initialized: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\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 }\n}", + "autogen/starknet/storage_var/Proxy_initialized/impl.cairo": "namespace Proxy_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 = 1596797181605835465375385856756254615380245139672087060603160900530960374661;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n initialized: felt\n ) {\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 }\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 }\n}" + }, + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 40, + "end_line": 5, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 19, + "end_line": 9, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 12 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 23, + "end_line": 2, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 13, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 35, + "end_line": 2, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 13, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 44, + "start_line": 13 + }, + "While expanding the reference 'src' in:" + ], + "start_col": 25, + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 38, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 33 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 15, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 73, + "end_line": 7, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 5, + "start_line": 7 + } + }, + "25": { + "accessible_scopes": [ + "starkware.cairo.lang.compiler.lib.registers", + "starkware.cairo.lang.compiler.lib.registers.get_ap" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 16, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 28, + "start_line": 16 + } + }, + "27": { + "accessible_scopes": [ + "starkware.cairo.lang.compiler.lib.registers", + "starkware.cairo.lang.compiler.lib.registers.get_ap" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 20, + "start_line": 17 + } + }, + "29": { + "accessible_scopes": [ + "starkware.cairo.lang.compiler.lib.registers", + "starkware.cairo.lang.compiler.lib.registers.get_ap" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "30": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 11, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 7 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "32": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "34": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "35": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 22 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "36": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "38": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "40": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 37, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 37 + } + }, + "41": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 42 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 26, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "42": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 48 + } + }, + "44": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "45": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "46": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 54 + } + }, + "47": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "49": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "50": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 70 + } + }, + "51": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 71 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 36, + "start_line": 70 + } + }, + "52": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 71 + } + }, + "54": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 72 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 36, + "start_line": 70 + } + }, + "55": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 18, + "start_line": 72 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 39, + "start_line": 70 + } + }, + "56": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 72 + } + }, + "58": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 73, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 73 + } + }, + "59": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 97 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 50, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "61": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 53, + "start_line": 108 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "62": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "63": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 108 + } + }, + "64": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 113, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "65": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 113, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + } + }, + "67": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 94, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 113, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 35, + "start_line": 113 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 94 + } + }, + "68": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 113, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "69": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 115, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 115 + } + }, + "71": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + } + }, + "72": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 141, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 134 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 37, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 142 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 131 + } + }, + "73": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 142 + } + }, + "75": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 40, + "start_line": 142 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 130 + } + }, + "76": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 142 + } + }, + "77": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 143 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 131 + } + }, + "78": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 143 + } + }, + "80": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 143 + } + }, + "82": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 144 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 132 + } + }, + "84": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 19, + "start_line": 144 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 130 + } + }, + "85": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 144 + } + }, + "87": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 144 + } + }, + "89": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 143 + } + }, + "91": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 146, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 146 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 132 + } + }, + "93": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 146, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 19, + "start_line": 146 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 131 + } + }, + "94": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 146, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 146 + } + }, + "96": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 146, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 146 + } + }, + "98": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 18, + "start_line": 148 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 131 + } + }, + "99": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 28, + "start_line": 148 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 130 + } + }, + "100": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 148 + } + }, + "101": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 164 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 42, + "end_line": 186, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "102": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 186, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "103": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "105": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "106": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 187, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "107": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 187, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "108": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "110": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "111": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 196, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 196 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 42, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 197 + } + }, + "113": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 198 + } + }, + "115": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 198 + } + }, + "116": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "117": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 199 + } + }, + "118": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 34, + "start_line": 199 + } + }, + "120": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 199 + } + }, + "121": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 199 + } + }, + "122": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "124": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + } + }, + "125": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 204 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 50, + "end_line": 205, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "127": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 206, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 21, + "start_line": 206 + } + }, + "129": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 206, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 206 + } + }, + "130": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 207 + } + }, + "131": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 207 + } + }, + "132": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 208, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 208 + } + }, + "133": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 208, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 208 + } + }, + "134": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "136": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + } + }, + "137": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 31, + "end_line": 213, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 213 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 214, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 214 + } + }, + "138": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 215, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 28, + "start_line": 215 + } + }, + "139": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 215, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 215 + } + }, + "140": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 215, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 215 + } + }, + "141": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 216, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 216 + } + }, + "143": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "145": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + } + }, + "146": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 230, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 224 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 15, + "end_line": 231, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 231 + } + }, + "147": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 231, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 231 + } + }, + "149": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 233, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 233 + } + }, + "151": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 235, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 235 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 223 + } + }, + "152": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 235, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 235 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 38, + "start_line": 223 + } + }, + "153": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 235, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 235 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 41, + "start_line": 223 + } + }, + "154": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 235, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 235 + } + }, + "156": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 236, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 236 + } + }, + "157": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 307, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 301 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 46, + "end_line": 300, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 308 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 300 + } + }, + "159": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 308, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 308 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "160": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 308, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 18, + "start_line": 308 + } + }, + "162": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 308 + } + }, + "164": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 299, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 310, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 310 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 299 + } + }, + "165": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 310, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 310 + } + }, + "166": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 310, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 30, + "start_line": 310 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "167": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 310, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 310 + } + }, + "168": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 311, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 311 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 308 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "169": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 299, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 311, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 13, + "start_line": 311 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 299 + } + }, + "170": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 311, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 311 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "171": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 311, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 311 + } + }, + "172": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 13, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 13 + } + }, + "174": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "176": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "177": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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 + } + }, + "179": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + } + }, + "181": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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 + } + }, + "183": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 89 + }, + "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": 89 + } + }, + "184": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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 + } + }, + "185": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + } + }, + "187": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 52 + } + }, + "189": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 52 + } + }, + "190": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 23, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 23 + } + }, + "192": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "194": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 30 + } + }, + "196": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "198": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "199": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "200": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + } + }, + "202": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "204": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 26 + } + }, + "206": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "207": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 28, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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 + } + }, + "208": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + } + }, + "210": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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 + } + }, + "211": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "212": { + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 47 + } + }, + "214": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "215": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "216": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "217": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "218": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "219": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 53 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 57 + }, + "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": 56 + } + }, + "221": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 26, + "start_line": 57 + } + }, + "222": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 57, + "start_line": 57 + } + }, + "223": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 57 + } + }, + "224": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 90 + } + }, + "226": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "227": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "228": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "229": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "230": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "231": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 96, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 96 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 100 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 99 + } + }, + "233": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 26, + "start_line": 100 + } + }, + "234": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 57, + "start_line": 100 + } + }, + "235": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 100 + } + }, + "236": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 202, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 63, + "start_line": 202 + } + }, + "238": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 202, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 202 + } + }, + "239": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 93, + "end_line": 203, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 203 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 58, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 204 + } + }, + "241": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 205, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 28, + "start_line": 205 + } + }, + "242": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "243": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 251, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 61, + "start_line": 251 + } + }, + "245": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 251, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 251 + } + }, + "246": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_number" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 91, + "end_line": 252, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 252 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 56, + "end_line": 253, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 249, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 254, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 254 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 249 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 253 + } + }, + "248": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 254, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 26, + "start_line": 254 + } + }, + "249": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 254, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 254 + } + }, + "250": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 276, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 65, + "start_line": 276 + } + }, + "252": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 276, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 276 + } + }, + "253": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 95, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 277 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 60, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 279, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 278 + } + }, + "255": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 279, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 30, + "start_line": 279 + } + }, + "256": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 279, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 279 + } + }, + "257": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_timestamp" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 300, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 64, + "start_line": 300 + } + }, + "259": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_timestamp" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 300, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 300 + } + }, + "260": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_timestamp" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 94, + "end_line": 301, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 301 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 59, + "end_line": 302, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 303, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 298 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 302 + } + }, + "262": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_timestamp" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 303, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 29, + "start_line": 303 + } + }, + "263": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_timestamp" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 303, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 303 + } + }, + "264": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 58, + "start_line": 354 + } + }, + "266": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "267": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "268": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 355 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 357, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 357 + } + }, + "270": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 19, + "start_line": 358 + } + }, + "271": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "272": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 372, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 372 + } + }, + "274": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "275": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "276": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "277": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 374, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 374 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 375 + } + }, + "279": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + } + }, + "280": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 392 + } + }, + "282": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "283": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "284": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "285": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "286": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "287": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 85, + "end_line": 394, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 394 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 395 + } + }, + "289": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + } + }, + "290": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_tx_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 446, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 56, + "start_line": 446 + } + }, + "292": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_tx_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 446, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 446 + } + }, + "293": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_tx_info" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 86, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 447 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 449, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 450, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 450 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 449 + } + }, + "295": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_tx_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 450, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 21, + "start_line": 450 + } + }, + "296": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_tx_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 450, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 450 + } + }, + "297": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 8, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 8 + } + }, + "299": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 16, + "start_line": 9 + } + }, + "301": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 9, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "302": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 12 + } + }, + "304": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "305": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 70, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 80 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 34, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 81 + } + }, + "307": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 82 + } + }, + "309": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "310": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 20, + "start_line": 83 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 79 + } + }, + "311": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 23, + "start_line": 83 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 37, + "start_line": 79 + } + }, + "312": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 83 + } + }, + "314": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 84, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 84 + } + }, + "316": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 84, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 84 + } + }, + "317": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 223 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "318": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 20, + "start_line": 87 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 37, + "start_line": 79 + } + }, + "319": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 23, + "start_line": 87 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 79 + } + }, + "320": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 87 + } + }, + "322": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 88 + } + }, + "324": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 88 + } + }, + "325": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "327": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "329": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "330": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "332": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "333": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "335": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "336": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 15, + "start_line": 15 + }, + "While handling calldata argument 'implementation'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "337": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While handling calldata argument 'implementation'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "339": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "340": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "342": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "343": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "344": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "345": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "347": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "348": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "349": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/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 + } + }, + "350": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "351": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "353": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "354": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "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": 25 + } + }, + "355": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "356": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "358": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "359": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "360": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "361": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "363": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "364": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "365": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "366": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/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 + } + }, + "367": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "368": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "370": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "371": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "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": 35, + "start_line": 12 + } + }, + "372": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "373": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "375": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "376": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "377": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "379": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "380": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "381": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "382": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "383": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "384": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "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": 25 + } + }, + "385": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "386": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "388": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "389": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "390": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "391": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "393": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "394": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "395": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_admin", + "lib.openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "396": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_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 + } + }, + "397": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "398": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "400": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "401": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "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": 35, + "start_line": 12 + } + }, + "402": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "403": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "405": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "406": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "407": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "409": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "410": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "411": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "412": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "413": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "414": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "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": 25 + } + }, + "415": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "416": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "418": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "419": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "420": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "421": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "423": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "424": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "425": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_initialized", + "lib.openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "426": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 29, + "start_line": 46 + }, + "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": 22, + "start_line": 43 + } + }, + "427": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 29, + "start_line": 46 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 43 + } + }, + "428": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 29, + "start_line": 46 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 43 + } + }, + "429": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 29, + "start_line": 46 + } + }, + "431": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 13, + "start_line": 48 + } + }, + "433": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 51 + }, + "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": 29, + "start_line": 46 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "434": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 46 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "435": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 46 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "436": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 33, + "start_line": 51 + } + }, + "438": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 51 + } + }, + "440": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 27, + "start_line": 52 + }, + "While expanding the reference 'proxy_admin' in:" + ], + "start_col": 9, + "start_line": 44 + } + }, + "441": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 52 + } + }, + "443": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 53 + } + }, + "444": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "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": 30, + "start_line": 60 + } + }, + "445": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 60 + } + }, + "446": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 60 + } + }, + "447": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 61, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 44, + "start_line": 63 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "448": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + } + }, + "450": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 64 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 63 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "451": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 64 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 63 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "452": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 61, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 64 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "453": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 64 + } + }, + "455": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 64 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "456": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 63 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "457": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 64 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "458": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + } + }, + "459": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 24, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 101 + } + }, + "460": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 24, + "start_line": 102 + } + }, + "462": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 103 + }, + "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": 24, + "start_line": 102 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "463": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 103 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 101 + } + }, + "464": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 103 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 101 + } + }, + "465": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 103 + } + }, + "467": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 13, + "start_line": 105 + } + }, + "468": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 101 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 103 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "469": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 101 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 103 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "470": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 101 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 103 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "471": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 107 + } + }, + "472": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 22, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "473": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 23, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "474": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 24, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 25, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 24 + } + }, + "476": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 25, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 25 + } + }, + "477": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 16, + "start_line": 48 + } + }, + "478": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 30, + "start_line": 48 + } + }, + "479": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 16, + "start_line": 49 + } + }, + "480": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 30, + "start_line": 49 + } + }, + "481": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 16, + "start_line": 49 + } + }, + "482": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 44, + "start_line": 49 + } + }, + "483": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 16, + "start_line": 50 + } + }, + "484": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 30, + "start_line": 50 + } + }, + "485": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 16, + "start_line": 47 + } + }, + "486": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 16, + "start_line": 48 + } + }, + "487": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 16, + "start_line": 49 + } + }, + "488": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 16, + "start_line": 50 + } + }, + "489": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 16, + "start_line": 51 + } + }, + "490": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.bigint_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 5, + "start_line": 45 + } + }, + "491": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 24, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + } + }, + "492": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 41, + "start_line": 122 + } + }, + "493": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 48, + "start_line": 122 + } + }, + "495": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 24, + "start_line": 122 + } + }, + "497": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 25, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 122 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + } + }, + "498": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 42, + "start_line": 123 + } + }, + "499": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 50, + "start_line": 123 + } + }, + "501": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 25, + "start_line": 123 + } + }, + "503": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 35, + "start_line": 125 + }, + "While expanding the reference 'd1' in:" + ], + "start_col": 14, + "start_line": 124 + } + }, + "505": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 5, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 123 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + } + }, + "506": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 28, + "start_line": 125 + }, + "While expanding the reference 'd0' in:" + ], + "start_col": 18, + "start_line": 122 + } + }, + "507": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 35, + "start_line": 125 + }, + "While expanding the reference 'd1' in:" + ], + "start_col": 14, + "start_line": 124 + } + }, + "508": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 42, + "start_line": 125 + }, + "While expanding the reference 'd2' in:" + ], + "start_col": 10, + "start_line": 123 + } + }, + "509": { + "accessible_scopes": [ + "starkware.cairo.common.cairo_secp.bigint", + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "start_col": 5, + "start_line": 125 + } + }, + "510": { + "accessible_scopes": [ + "starkware.cairo.common.signature", + "starkware.cairo.common.signature.verify_ecdsa_signature" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 98, + "end_line": 13, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" + }, + "start_col": 5, + "start_line": 13 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 40, + "end_line": 14, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" + }, + "start_col": 5, + "start_line": 14 + } + }, + "511": { + "accessible_scopes": [ + "starkware.cairo.common.signature", + "starkware.cairo.common.signature.verify_ecdsa_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" + }, + "start_col": 5, + "start_line": 15 + } + }, + "512": { + "accessible_scopes": [ + "starkware.cairo.common.signature", + "starkware.cairo.common.signature.verify_ecdsa_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 10, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 18, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" + }, + "start_col": 5, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 29, + "start_line": 10 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + } + }, + "514": { + "accessible_scopes": [ + "starkware.cairo.common.signature", + "starkware.cairo.common.signature.verify_ecdsa_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 18, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "515": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.bigint", + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 23, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "start_col": 5, + "start_line": 19 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 67, + "end_line": 27, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "start_col": 36, + "start_line": 27 + } + }, + "517": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.bigint", + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 27, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "start_col": 36, + "start_line": 27 + } + }, + "518": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.bigint", + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 27, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "start_col": 5, + "start_line": 27 + } + }, + "519": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.bigint", + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 28, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "start_col": 36, + "start_line": 28 + } + }, + "521": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.bigint", + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 28, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "start_col": 5, + "start_line": 28 + } + }, + "522": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.bigint", + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "start_col": 31, + "start_line": 31 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 26 + } + }, + "524": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.bigint", + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "525": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.bigint", + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "start_col": 5, + "start_line": 33 + } + }, + "526": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.bigint", + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "start_col": 5, + "start_line": 34 + } + }, + "527": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.bigint", + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 36, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "start_col": 5, + "start_line": 36 + } + }, + "528": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.assert_165_bit" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 29, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 20 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 37, + "end_line": 18, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 36, + "start_line": 31 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 18 + } + }, + "529": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.assert_165_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 36, + "start_line": 31 + } + }, + "531": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.assert_165_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "532": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.assert_165_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 18, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 20, + "start_line": 33 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 18 + } + }, + "533": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.assert_165_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 20, + "start_line": 33 + } + }, + "535": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.assert_165_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 17 + } + }, + "536": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.assert_165_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 33 + } + }, + "537": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.assert_165_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 35, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 36, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 35 + } + }, + "539": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.assert_165_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 36, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 36 + } + }, + "540": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 24, + "start_line": 53 + } + }, + "541": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 20, + "start_line": 54 + } + }, + "542": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 32, + "start_line": 54 + } + }, + "543": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 20, + "start_line": 54 + } + }, + "544": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 57 + } + }, + "545": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 28, + "start_line": 57 + } + }, + "547": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 28, + "start_line": 57 + } + }, + "548": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 57 + } + }, + "549": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 42, + "start_line": 57 + } + }, + "551": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 42, + "start_line": 57 + } + }, + "552": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 58 + } + }, + "553": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 28, + "start_line": 58 + } + }, + "554": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 58 + } + }, + "555": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 40, + "start_line": 58 + } + }, + "557": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 40, + "start_line": 58 + } + }, + "558": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 58 + } + }, + "559": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 54, + "start_line": 58 + } + }, + "561": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 54, + "start_line": 58 + } + }, + "562": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 59 + } + }, + "563": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 28, + "start_line": 59 + } + }, + "564": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 59 + } + }, + "565": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 40, + "start_line": 59 + } + }, + "566": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 59 + } + }, + "567": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 52, + "start_line": 59 + } + }, + "569": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 52, + "start_line": 59 + } + }, + "570": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 59 + } + }, + "571": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 66, + "start_line": 59 + } + }, + "573": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 66, + "start_line": 59 + } + }, + "574": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 57 + } + }, + "575": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 58 + } + }, + "576": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 59 + } + }, + "577": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_mul" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 61, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "578": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 24, + "start_line": 69 + } + }, + "579": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 26, + "start_line": 70 + } + }, + "580": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 38, + "start_line": 70 + } + }, + "581": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 26, + "start_line": 70 + } + }, + "582": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 20, + "start_line": 71 + } + }, + "583": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 74, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 74 + } + }, + "584": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 74, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 28, + "start_line": 74 + } + }, + "586": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 74, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 28, + "start_line": 74 + } + }, + "587": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 74, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 74 + } + }, + "588": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 74, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 42, + "start_line": 74 + } + }, + "590": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 74, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 42, + "start_line": 74 + } + }, + "591": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 75 + } + }, + "592": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 30, + "start_line": 75 + } + }, + "594": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 30, + "start_line": 75 + } + }, + "595": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 75 + } + }, + "596": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 44, + "start_line": 75 + } + }, + "598": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 44, + "start_line": 75 + } + }, + "599": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 76 + } + }, + "600": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 28, + "start_line": 76 + } + }, + "601": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 76 + } + }, + "602": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 40, + "start_line": 76 + } + }, + "603": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 76 + } + }, + "604": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 52, + "start_line": 76 + } + }, + "606": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 52, + "start_line": 76 + } + }, + "607": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 76 + } + }, + "608": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 66, + "start_line": 76 + } + }, + "610": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 66, + "start_line": 76 + } + }, + "611": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 74, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 74 + } + }, + "612": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 75 + } + }, + "613": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 76 + } + }, + "614": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.unreduced_sqr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 72 + } + }, + "615": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 86, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 86 + } + }, + "617": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 94, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 88 + }, + "n_prefix_newlines": 0 + }, + { + "location": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 89 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 97 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + } + }, + "618": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 20, + "start_line": 97 + } + }, + "620": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 97 + } + }, + "622": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 19, + "start_line": 100 + } + }, + "623": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 18, + "start_line": 100 + } + }, + "625": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 101 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 97 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 12 + } + }, + "626": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 20, + "start_line": 101 + } + }, + "628": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 101 + } + }, + "630": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 28, + "start_line": 106 + } + }, + "632": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 19, + "start_line": 106 + } + }, + "633": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 19, + "start_line": 106 + } + }, + "634": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 18, + "start_line": 106 + } + }, + "636": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 101 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 12 + } + }, + "637": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 20, + "start_line": 107 + } + }, + "639": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 107 + } + }, + "641": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 21, + "start_line": 112 + } + }, + "643": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 37, + "start_line": 112 + } + }, + "645": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 37, + "start_line": 112 + } + }, + "646": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 112 + } + }, + "647": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 120 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 107 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 12 + } + }, + "648": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 120 + } + }, + "649": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 94, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 128 + }, + "n_prefix_newlines": 0 + }, + { + "location": { + "end_col": 7, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 129 + }, + "n_prefix_newlines": 1 + }, + { + "location": { + "end_col": 28, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 9, + "start_line": 133 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 28, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 9, + "start_line": 133 + } + }, + "651": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 133 + } + }, + "653": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 133 + } + }, + "655": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 9, + "start_line": 134 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 127 + } + }, + "656": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 41, + "start_line": 134 + } + }, + "657": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 50, + "start_line": 134 + } + }, + "658": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 59, + "start_line": 134 + } + }, + "659": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 9, + "start_line": 134 + } + }, + "661": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 21, + "start_line": 135 + } + }, + "663": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 9, + "start_line": 135 + } + }, + "664": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 138 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 29, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 19, + "start_line": 143 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 127 + } + }, + "665": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 19, + "start_line": 143 + } + }, + "667": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 35, + "start_line": 144 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 31, + "start_line": 127 + } + }, + "668": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 35, + "start_line": 144 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 31, + "start_line": 127 + } + }, + "669": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 35, + "start_line": 144 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 31, + "start_line": 127 + } + }, + "670": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 38, + "start_line": 144 + }, + "While expanding the reference 'x_inv' in:" + ], + "start_col": 10, + "start_line": 143 + } + }, + "671": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 38, + "start_line": 144 + }, + "While expanding the reference 'x_inv' in:" + ], + "start_col": 10, + "start_line": 143 + } + }, + "672": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 38, + "start_line": 144 + }, + "While expanding the reference 'x_inv' in:" + ], + "start_col": 10, + "start_line": 143 + } + }, + "673": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 21, + "start_line": 144 + } + }, + "675": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 147 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 143 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + } + }, + "676": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 37, + "start_line": 147 + } + }, + "678": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 56, + "start_line": 147 + } + }, + "679": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 71, + "start_line": 147 + } + }, + "680": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 147 + } + }, + "682": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 17, + "start_line": 148 + } + }, + "684": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 148 + } + }, + "685": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 94, + "end_line": 157, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 157 + }, + "n_prefix_newlines": 0 + }, + { + "location": { + "end_col": 7, + "end_line": 161, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 158 + }, + "n_prefix_newlines": 1 + }, + { + "location": { + "end_col": 7, + "end_line": 167, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 163 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 28, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 28, + "start_line": 168 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 155 + } + }, + "686": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 28, + "start_line": 168 + } + }, + "688": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 170 + }, + "n_prefix_newlines": 1 + }, + { + "location": { + "end_col": 7, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 174 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 32, + "start_line": 181 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 168 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + } + }, + "689": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 32, + "start_line": 181 + } + }, + "691": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 32, + "start_line": 181 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + } + }, + "692": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 185, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 185 + } + }, + "693": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 186, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 186 + } + }, + "694": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 187, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 16, + "start_line": 187 + } + }, + "695": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 183 + } + }, + "697": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 23, + "start_line": 190 + }, + "While expanding the reference 'reduced_x' in:" + ], + "start_col": 10, + "start_line": 181 + } + }, + "698": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 23, + "start_line": 190 + }, + "While expanding the reference 'reduced_x' in:" + ], + "start_col": 10, + "start_line": 181 + } + }, + "699": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 23, + "start_line": 190 + }, + "While expanding the reference 'reduced_x' in:" + ], + "start_col": 10, + "start_line": 181 + } + }, + "700": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "start_col": 5, + "start_line": 190 + } + }, + "701": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 95, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 31 + }, + "n_prefix_newlines": 0 + }, + { + "location": { + "end_col": 98, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "n_prefix_newlines": 0 + }, + { + "location": { + "end_col": 7, + "end_line": 41, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 33 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 44, + "end_line": 28, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 28 + } + }, + "702": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 42 + } + }, + "704": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 51, + "start_line": 44 + } + }, + "705": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 51, + "start_line": 44 + } + }, + "706": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 51, + "start_line": 44 + } + }, + "707": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 37, + "start_line": 44 + } + }, + "709": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 53, + "start_line": 45 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 42 + } + }, + "710": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 53, + "start_line": 45 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 42 + } + }, + "711": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 53, + "start_line": 45 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 42 + } + }, + "712": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 60, + "start_line": 45 + } + }, + "713": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 60, + "start_line": 45 + } + }, + "714": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 60, + "start_line": 45 + } + }, + "715": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 39, + "start_line": 45 + } + }, + "717": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 48 + } + }, + "719": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 48 + } + }, + "720": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 48 + } + }, + "722": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 48 + } + }, + "724": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 48 + } + }, + "725": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 49 + } + }, + "727": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 49 + } + }, + "728": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 49 + } + }, + "730": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 49 + } + }, + "732": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 49 + } + }, + "733": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 50 + } + }, + "735": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 50 + } + }, + "736": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 50 + } + }, + "738": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 50 + } + }, + "740": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 50 + } + }, + "741": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 46 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 42 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + } + }, + "742": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 48 + } + }, + "743": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 49 + } + }, + "744": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 50 + } + }, + "745": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "747": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 19, + "start_line": 54 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 42 + } + }, + "748": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 19, + "start_line": 54 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 42 + } + }, + "749": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 19, + "start_line": 54 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 42 + } + }, + "750": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "751": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 95, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 70 + }, + "n_prefix_newlines": 0 + }, + { + "location": { + "end_col": 7, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 71 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 35, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 19, + "start_line": 82 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 69 + } + }, + "752": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 19, + "start_line": 82 + } + }, + "754": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 58, + "start_line": 87 + }, + "While expanding the reference 'x_diff' in:" + ], + "start_col": 12, + "start_line": 85 + } + }, + "755": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 58, + "start_line": 87 + }, + "While expanding the reference 'x_diff' in:" + ], + "start_col": 42, + "start_line": 85 + } + }, + "756": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 58, + "start_line": 87 + }, + "While expanding the reference 'x_diff' in:" + ], + "start_col": 72, + "start_line": 85 + } + }, + "757": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 66, + "start_line": 87 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 82 + } + }, + "758": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 66, + "start_line": 87 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 82 + } + }, + "759": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 66, + "start_line": 87 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 82 + } + }, + "760": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 44, + "start_line": 87 + } + }, + "762": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 90 + } + }, + "763": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 91, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 91 + } + }, + "764": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 92, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 92 + } + }, + "765": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 94, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 88 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 82 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + } + }, + "766": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 90 + } + }, + "767": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 91, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 91 + } + }, + "768": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 92, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 92 + } + }, + "769": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 94, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 88 + } + }, + "771": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 96, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 19, + "start_line": 96 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 82 + } + }, + "772": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 96, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 19, + "start_line": 96 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 82 + } + }, + "773": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 96, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 19, + "start_line": 96 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 82 + } + }, + "774": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 96, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 96 + } + }, + "775": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 108 + } + }, + "777": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 109, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 9, + "start_line": 109 + } + }, + "779": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 13, + "start_line": 110 + } + }, + "781": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 111, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 17, + "start_line": 111 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "782": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 111, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 111 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "783": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 111, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 111 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "784": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 111, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 111 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "785": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 111, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 111 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "786": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 111, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 111 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "787": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 111, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 111 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "788": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 111, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 17, + "start_line": 111 + } + }, + "789": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 28, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 28 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "790": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 51, + "start_line": 116 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "791": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 51, + "start_line": 116 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "792": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 51, + "start_line": 116 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "793": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 51, + "start_line": 116 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "794": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 51, + "start_line": 116 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "795": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 51, + "start_line": 116 + }, + "While expanding the reference 'point' in:" + ], + "start_col": 33, + "start_line": 106 + } + }, + "796": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 116 + } + }, + "798": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 41, + "start_line": 117 + } + }, + "800": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 94, + "end_line": 118, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 118 + }, + "n_prefix_newlines": 0 + }, + { + "location": { + "end_col": 7, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 119 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 44, + "end_line": 28, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 128 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 116 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 28 + } + }, + "801": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 128 + } + }, + "803": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 61, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 130 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 131 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 128 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + } + }, + "804": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 131 + } + }, + "806": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 134 + } + }, + "807": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 134 + } + }, + "809": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 134 + } + }, + "810": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 135 + } + }, + "811": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 135 + } + }, + "813": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 135 + } + }, + "814": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 136, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 136 + } + }, + "815": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 136, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 136 + } + }, + "817": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 136, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 136 + } + }, + "818": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 132 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 131 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + } + }, + "819": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 134 + } + }, + "820": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 135 + } + }, + "821": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 136, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 136 + } + }, + "822": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 132 + } + }, + "824": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 141, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 20, + "start_line": 141 + } + }, + "825": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 141, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 46, + "start_line": 141 + } + }, + "826": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 141, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 72, + "start_line": 141 + } + }, + "827": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 141, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 96, + "start_line": 141 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 116 + } + }, + "828": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 141, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 96, + "start_line": 141 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 116 + } + }, + "829": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 141, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 96, + "start_line": 141 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 116 + } + }, + "830": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 44, + "start_line": 140 + } + }, + "832": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 145, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 145 + } + }, + "833": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 146, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 146 + } + }, + "834": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 147 + } + }, + "835": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 143 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 132 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + } + }, + "836": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 145, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 145 + } + }, + "837": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 146, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 146 + } + }, + "838": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 147 + } + }, + "839": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 143 + } + }, + "841": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 25, + "start_line": 151 + }, + "While expanding the reference 'new_x' in:" + ], + "start_col": 10, + "start_line": 128 + } + }, + "842": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 25, + "start_line": 151 + }, + "While expanding the reference 'new_x' in:" + ], + "start_col": 10, + "start_line": 128 + } + }, + "843": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 25, + "start_line": 151 + }, + "While expanding the reference 'new_x' in:" + ], + "start_col": 10, + "start_line": 128 + } + }, + "844": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 32, + "start_line": 151 + }, + "While expanding the reference 'new_y' in:" + ], + "start_col": 10, + "start_line": 131 + } + }, + "845": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 32, + "start_line": 151 + }, + "While expanding the reference 'new_y' in:" + ], + "start_col": 10, + "start_line": 131 + } + }, + "846": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 32, + "start_line": 151 + }, + "While expanding the reference 'new_y' in:" + ], + "start_col": 10, + "start_line": 131 + } + }, + "847": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 151 + } + }, + "848": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 167, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 167 + } + }, + "850": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 9, + "start_line": 168 + } + }, + "852": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 13, + "start_line": 169 + } + }, + "854": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 17, + "start_line": 170 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 165 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 165 + } + }, + "855": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 170 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "856": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 170 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "857": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 170 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "858": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 170 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "859": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 170 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "860": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 170 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "861": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 17, + "start_line": 170 + } + }, + "862": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 176, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 176 + } + }, + "864": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 177, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 9, + "start_line": 177 + } + }, + "866": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 13, + "start_line": 178 + } + }, + "868": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 17, + "start_line": 179 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 165 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 165 + } + }, + "869": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 179 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "870": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 179 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "871": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 179 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "872": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 179 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "873": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 179 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "874": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 29, + "start_line": 179 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "875": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 17, + "start_line": 179 + } + }, + "876": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 184 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 69 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 165 + } + }, + "877": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 184 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "878": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 184 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "879": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 184 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "880": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 184 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "881": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 184 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "882": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 42, + "start_line": 184 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 35, + "start_line": 165 + } + }, + "883": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "884": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "885": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "886": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "887": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "888": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 52, + "start_line": 165 + } + }, + "889": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 184 + } + }, + "891": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 185, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 41, + "start_line": 185 + } + }, + "893": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 94, + "end_line": 186, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 186 + }, + "n_prefix_newlines": 0 + }, + { + "location": { + "end_col": 7, + "end_line": 196, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 187 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 35, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 184 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 69 + } + }, + "894": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 197 + } + }, + "896": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 63, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 199 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 197 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + } + }, + "897": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 200 + } + }, + "899": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 203, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 203 + } + }, + "900": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 203, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 203 + } + }, + "901": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 204 + } + }, + "902": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 204 + } + }, + "903": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 205, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 205 + } + }, + "904": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 205, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 205 + } + }, + "905": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 201 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 200 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + } + }, + "906": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 203, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 203 + } + }, + "907": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 204 + } + }, + "908": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 205, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 205 + } + }, + "909": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 201 + } + }, + "911": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 20, + "start_line": 210 + } + }, + "912": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 47, + "start_line": 210 + } + }, + "913": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 74, + "start_line": 210 + } + }, + "914": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 211, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 9, + "start_line": 211 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 184 + } + }, + "915": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 211, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 9, + "start_line": 211 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 184 + } + }, + "916": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 211, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 9, + "start_line": 211 + }, + "While expanding the reference 'slope' in:" + ], + "start_col": 10, + "start_line": 184 + } + }, + "917": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 44, + "start_line": 209 + } + }, + "919": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 215, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 215 + } + }, + "920": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 216, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 216 + } + }, + "921": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 217 + } + }, + "922": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 219, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 213 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 201 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + } + }, + "923": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 215, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 215 + } + }, + "924": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 216, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 216 + } + }, + "925": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 217 + } + }, + "926": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 219, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 213 + } + }, + "928": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 221, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 25, + "start_line": 221 + }, + "While expanding the reference 'new_x' in:" + ], + "start_col": 10, + "start_line": 197 + } + }, + "929": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 221, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 25, + "start_line": 221 + }, + "While expanding the reference 'new_x' in:" + ], + "start_col": 10, + "start_line": 197 + } + }, + "930": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 221, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 25, + "start_line": 221 + }, + "While expanding the reference 'new_x' in:" + ], + "start_col": 10, + "start_line": 197 + } + }, + "931": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 221, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 32, + "start_line": 221 + }, + "While expanding the reference 'new_y' in:" + ], + "start_col": 10, + "start_line": 200 + } + }, + "932": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 221, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 32, + "start_line": 221 + }, + "While expanding the reference 'new_y' in:" + ], + "start_col": 10, + "start_line": 200 + } + }, + "933": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 221, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 32, + "start_line": 221 + }, + "While expanding the reference 'new_y' in:" + ], + "start_col": 10, + "start_line": 200 + } + }, + "934": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 221, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 221 + } + }, + "935": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 26, + "start_line": 229 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 127 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + } + }, + "936": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 227, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 34, + "start_line": 229 + }, + "While expanding the reference 'x_diff' in:" + ], + "start_col": 12, + "start_line": 227 + } + }, + "937": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 227, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 34, + "start_line": 229 + }, + "While expanding the reference 'x_diff' in:" + ], + "start_col": 42, + "start_line": 227 + } + }, + "938": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 227, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 34, + "start_line": 229 + }, + "While expanding the reference 'x_diff' in:" + ], + "start_col": 72, + "start_line": 227 + } + }, + "939": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 26, + "start_line": 229 + } + }, + "941": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 230, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 230 + } + }, + "943": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 232 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 165 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 229 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 127 + } + }, + "944": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 232 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "945": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 232 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "946": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 232 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "947": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 232 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "948": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 232 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "949": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 28, + "start_line": 232 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "950": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 232 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 47, + "start_line": 225 + } + }, + "951": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 232 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 47, + "start_line": 225 + } + }, + "952": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 232 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 47, + "start_line": 225 + } + }, + "953": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 232 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 47, + "start_line": 225 + } + }, + "954": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 232 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 47, + "start_line": 225 + } + }, + "955": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 36, + "start_line": 232 + }, + "While expanding the reference 'point1' in:" + ], + "start_col": 47, + "start_line": 225 + } + }, + "956": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 232 + } + }, + "958": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 9, + "start_line": 232 + } + }, + "959": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 30, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 127 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 229 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 127 + } + }, + "960": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 38, + "start_line": 240 + }, + "While expanding the reference 'y_sum' in:" + ], + "start_col": 12, + "start_line": 238 + } + }, + "961": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 38, + "start_line": 240 + }, + "While expanding the reference 'y_sum' in:" + ], + "start_col": 42, + "start_line": 238 + } + }, + "962": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 38, + "start_line": 240 + }, + "While expanding the reference 'y_sum' in:" + ], + "start_col": 72, + "start_line": 238 + } + }, + "963": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 30, + "start_line": 240 + } + }, + "965": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 241, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 241 + } + }, + "967": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 240 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 127 + } + }, + "968": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 26, + "start_line": 248 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "969": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 26, + "start_line": 248 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "970": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 26, + "start_line": 248 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "971": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 26, + "start_line": 248 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "972": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 26, + "start_line": 248 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "973": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 26, + "start_line": 248 + }, + "While expanding the reference 'point0' in:" + ], + "start_col": 30, + "start_line": 225 + } + }, + "974": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 248 + } + }, + "976": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 9, + "start_line": 248 + } + }, + "977": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 245, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 9, + "start_line": 245 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 240 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 127 + } + }, + "978": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 244, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 245, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 21, + "start_line": 245 + }, + "While expanding the reference 'ZERO_POINT' in:" + ], + "start_col": 42, + "start_line": 244 + } + }, + "980": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 244, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 245, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 21, + "start_line": 245 + }, + "While expanding the reference 'ZERO_POINT' in:" + ], + "start_col": 45, + "start_line": 244 + } + }, + "982": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 245, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 21, + "start_line": 245 + }, + "While expanding the reference 'ZERO_POINT' in:" + ], + "start_col": 48, + "start_line": 244 + } + }, + "984": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 244, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 245, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 21, + "start_line": 245 + }, + "While expanding the reference 'ZERO_POINT' in:" + ], + "start_col": 60, + "start_line": 244 + } + }, + "986": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 244, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 245, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 21, + "start_line": 245 + }, + "While expanding the reference 'ZERO_POINT' in:" + ], + "start_col": 63, + "start_line": 244 + } + }, + "988": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 244, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 245, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 21, + "start_line": 245 + }, + "While expanding the reference 'ZERO_POINT' in:" + ], + "start_col": 66, + "start_line": 244 + } + }, + "990": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 245, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 9, + "start_line": 245 + } + }, + "991": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 296, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 54, + "start_line": 296 + } + }, + "992": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 296, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 54, + "start_line": 296 + } + }, + "993": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 296, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 54, + "start_line": 296 + } + }, + "994": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 296, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 40, + "start_line": 296 + } + }, + "996": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 295, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 39, + "start_line": 297 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 155 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 295 + } + }, + "997": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 296, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 46, + "start_line": 297 + }, + "While expanding the reference 'x_square' in:" + ], + "start_col": 10, + "start_line": 296 + } + }, + "998": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 296, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 46, + "start_line": 297 + }, + "While expanding the reference 'x_square' in:" + ], + "start_col": 10, + "start_line": 296 + } + }, + "999": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 296, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 46, + "start_line": 297 + }, + "While expanding the reference 'x_square' in:" + ], + "start_col": 10, + "start_line": 296 + } + }, + "1000": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 39, + "start_line": 297 + } + }, + "1002": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 52, + "start_line": 298 + } + }, + "1003": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 52, + "start_line": 298 + } + }, + "1004": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 52, + "start_line": 298 + } + }, + "1005": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 58, + "start_line": 298 + }, + "While expanding the reference 'x_square_reduced' in:" + ], + "start_col": 10, + "start_line": 297 + } + }, + "1006": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 58, + "start_line": 298 + }, + "While expanding the reference 'x_square_reduced' in:" + ], + "start_col": 10, + "start_line": 297 + } + }, + "1007": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 58, + "start_line": 298 + }, + "While expanding the reference 'x_square_reduced' in:" + ], + "start_col": 10, + "start_line": 297 + } + }, + "1008": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 38, + "start_line": 298 + } + }, + "1010": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 299, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 48, + "start_line": 299 + } + }, + "1011": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 299, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 48, + "start_line": 299 + } + }, + "1012": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 299, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 48, + "start_line": 299 + } + }, + "1013": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 299, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 65, + "start_line": 299 + } + }, + "1015": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 299, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 72, + "start_line": 299 + } + }, + "1017": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 299, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 79, + "start_line": 299 + } + }, + "1019": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 299, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 34, + "start_line": 299 + } + }, + "1021": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 300, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 54, + "start_line": 300 + } + }, + "1022": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 300, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 54, + "start_line": 300 + } + }, + "1023": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 300, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 54, + "start_line": 300 + } + }, + "1024": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 300, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 40, + "start_line": 300 + } + }, + "1026": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 304, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 304 + } + }, + "1028": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 304, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 304 + } + }, + "1029": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 305, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 305 + } + }, + "1031": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 305, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 305 + } + }, + "1032": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 306 + } + }, + "1034": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 306 + } + }, + "1035": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/field.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 308, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 302 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 85 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 297 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 155 + } + }, + "1036": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 304, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 304 + } + }, + "1037": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 305, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 305 + } + }, + "1038": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 306, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 16, + "start_line": 306 + } + }, + "1039": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 308, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 302 + } + }, + "1041": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.verify_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 310, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "start_col": 5, + "start_line": 310 + } + }, + "1042": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 42 + } + }, + "1044": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 45 + } + }, + "1046": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 45 + } + }, + "1048": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 46 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 38 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 38 + } + }, + "1049": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 20, + "start_line": 46 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1050": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 20, + "start_line": 46 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1051": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 20, + "start_line": 46 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1052": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 20, + "start_line": 46 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1053": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 20, + "start_line": 46 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1054": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 20, + "start_line": 46 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1055": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 46 + } + }, + "1056": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 38 + } + }, + "1057": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 49 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1058": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 49 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1059": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 49 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1060": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 49 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1061": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 49 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1062": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 49 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1063": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 49 + } + }, + "1065": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 54 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 7, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 57 + } + }, + "1067": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 58 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1068": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 58 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1069": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 58 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1070": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 58 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1071": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 58 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1072": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 58 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1073": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 52, + "start_line": 58 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1074": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 52, + "start_line": 58 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1075": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 52, + "start_line": 58 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1076": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 52, + "start_line": 58 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1077": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 52, + "start_line": 58 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1078": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 52, + "start_line": 58 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1079": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 58 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1080": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 58 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1081": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 58 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1082": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 58 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1083": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 58 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1084": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 58 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1085": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 40, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 58 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 40 + } + }, + "1086": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 40, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 65, + "start_line": 58 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 40 + } + }, + "1087": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 74, + "start_line": 58 + }, + "While expanding the reference 'mm1' in:" + ], + "start_col": 15, + "start_line": 51 + } + }, + "1089": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 18, + "start_line": 58 + } + }, + "1091": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 7, + "start_line": 59 + } + }, + "1092": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 62 + } + }, + "1094": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "1096": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 19, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 49 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "1097": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 63 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1098": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 63 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1099": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 63 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1100": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 63 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1101": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 63 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1102": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 63 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1103": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 63 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1104": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 63 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1105": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 63 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1106": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 63 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1107": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 63 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1108": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 63 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1109": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 19, + "start_line": 63 + } + }, + "1111": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 64 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1112": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 64 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1113": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 64 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1114": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 64 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1115": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 64 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1116": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 64 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1117": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 64 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1118": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 64 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1119": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 64 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1120": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 64 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1121": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 64 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1122": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 64 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1123": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 64 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1124": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 64 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1125": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 64 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1126": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 64 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1127": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 64 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1128": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 64 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1129": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 40, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 49, + "start_line": 64 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 40 + } + }, + "1130": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 40, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 58, + "start_line": 64 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 40 + } + }, + "1131": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 67, + "start_line": 64 + }, + "While expanding the reference 'mm1' in:" + ], + "start_col": 15, + "start_line": 51 + } + }, + "1133": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 18, + "start_line": 64 + } + }, + "1135": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 7, + "start_line": 65 + } + }, + "1136": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 68 + } + }, + "1138": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 68 + } + }, + "1140": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 19, + "start_line": 69 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 49 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "1141": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 69 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1142": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 69 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1143": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 69 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1144": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 69 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1145": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 69 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1146": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 69 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1147": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 69 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1148": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 69 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1149": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 69 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1150": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 69 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1151": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 69 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1152": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 39, + "start_line": 69 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1153": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 69, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 19, + "start_line": 69 + } + }, + "1155": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 70 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1156": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 70 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1157": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 70 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1158": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 70 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1159": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 70 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1160": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 70 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1161": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 70 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1162": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 70 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1163": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 70 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1164": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 70 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1165": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 70 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1166": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 70 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1167": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 70 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1168": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 70 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1169": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 70 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1170": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 70 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1171": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 70 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1172": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 70 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1173": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 40, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 49, + "start_line": 70 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 40 + } + }, + "1174": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 40, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 58, + "start_line": 70 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 40 + } + }, + "1175": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 67, + "start_line": 70 + }, + "While expanding the reference 'mm1' in:" + ], + "start_col": 15, + "start_line": 51 + } + }, + "1177": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 18, + "start_line": 70 + } + }, + "1179": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 7, + "start_line": 71 + } + }, + "1180": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 74, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 74 + } + }, + "1182": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 74, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 74 + } + }, + "1184": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 18, + "start_line": 75 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 49 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "1185": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 25, + "start_line": 75 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1186": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 25, + "start_line": 75 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1187": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 25, + "start_line": 75 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1188": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 25, + "start_line": 75 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1189": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 25, + "start_line": 75 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1190": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 25, + "start_line": 75 + }, + "While expanding the reference 'double_point' in:" + ], + "start_col": 10, + "start_line": 49 + } + }, + "1191": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 75 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1192": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 75 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1193": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 75 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1194": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 75 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1195": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 75 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1196": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 75 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1197": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 18, + "start_line": 75 + } + }, + "1199": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 76 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1200": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 76 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1201": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 76 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1202": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 76 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1203": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 76 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1204": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 43, + "start_line": 76 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 17, + "start_line": 39 + } + }, + "1205": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 76 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1206": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 76 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1207": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 76 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1208": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 76 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1209": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 76 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1210": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 45, + "start_line": 76 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 29, + "start_line": 39 + } + }, + "1211": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 76 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1212": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 76 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1213": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 76 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1214": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 76 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1215": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 76 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1216": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 76 + }, + "While expanding the reference 'H' in:" + ], + "start_col": 41, + "start_line": 39 + } + }, + "1217": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 40, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 49, + "start_line": 76 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 40 + } + }, + "1218": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 40, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 58, + "start_line": 76 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 40 + } + }, + "1219": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 67, + "start_line": 76 + }, + "While expanding the reference 'mm1' in:" + ], + "start_col": 15, + "start_line": 51 + } + }, + "1221": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 18, + "start_line": 76 + } + }, + "1223": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 77, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 7, + "start_line": 77 + } + }, + "1224": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 38 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 49 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "1225": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 81 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1226": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 81 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1227": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 81 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1228": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 81 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1229": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 81 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1230": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 81 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 39 + } + }, + "1231": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 6, + "start_line": 81 + } + }, + "1232": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 92, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 92 + } + }, + "1234": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 98 + } + }, + "1236": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 98 + } + }, + "1238": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 88 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 88 + } + }, + "1239": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 99 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1240": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 99 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1241": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 99 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1242": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 99 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1243": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 99 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1244": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 99 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1245": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 99 + } + }, + "1246": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 88 + } + }, + "1247": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 102 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1248": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 102 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1249": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 102 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1250": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 102 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1251": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 102 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1252": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 36, + "start_line": 102 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1253": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 26, + "start_line": 102 + } + }, + "1255": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 105 + } + }, + "1257": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 16, + "start_line": 106 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 38 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 102 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "1258": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 35, + "start_line": 106 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1259": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 35, + "start_line": 106 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1260": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 35, + "start_line": 106 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1261": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 35, + "start_line": 106 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1262": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 35, + "start_line": 106 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1263": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 35, + "start_line": 106 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "1264": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 106 + } + }, + "1265": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 106 + } + }, + "1266": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 106 + } + }, + "1267": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 106 + } + }, + "1268": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 106 + } + }, + "1269": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 38, + "start_line": 106 + } + }, + "1270": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 46, + "start_line": 106 + } + }, + "1271": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 46, + "start_line": 106 + } + }, + "1272": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 46, + "start_line": 106 + } + }, + "1273": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 46, + "start_line": 106 + } + }, + "1274": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 46, + "start_line": 106 + } + }, + "1275": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 46, + "start_line": 106 + } + }, + "1276": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 106 + } + }, + "1277": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 106 + } + }, + "1278": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 106 + } + }, + "1279": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 106 + } + }, + "1280": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 106 + } + }, + "1281": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 54, + "start_line": 106 + } + }, + "1282": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 63, + "start_line": 106 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "1283": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 73, + "start_line": 106 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "1284": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 83, + "start_line": 106 + }, + "While expanding the reference 'm' in:" + ], + "start_col": 37, + "start_line": 90 + } + }, + "1285": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 16, + "start_line": 106 + } + }, + "1287": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 6, + "start_line": 107 + } + }, + "1288": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 29, + "start_line": 110 + } + }, + "1290": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 113 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 122 + } + }, + "1292": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1293": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1294": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1295": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1296": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1297": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1298": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1299": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1300": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1301": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1302": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1303": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1304": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1305": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1306": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1307": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1308": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1309": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1310": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1311": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1312": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1313": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1314": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1315": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1316": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1317": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1318": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1319": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1320": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1321": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1322": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1323": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1324": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1325": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1326": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1327": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1328": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1329": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1330": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1331": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1332": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1333": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1334": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1335": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1336": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1337": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1338": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1339": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1340": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1341": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1342": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1343": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1344": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1345": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1346": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1347": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1348": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1349": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1350": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1351": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1352": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1353": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1354": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1355": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1356": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1357": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1358": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1359": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1360": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1361": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1362": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1363": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1364": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1365": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1366": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1367": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1368": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1369": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1370": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1371": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1372": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1373": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1374": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1375": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1376": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1377": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1378": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1379": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1380": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1381": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 59, + "start_line": 123 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1382": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 65, + "start_line": 123 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "1383": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 75, + "start_line": 123 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "1384": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 85, + "start_line": 123 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "1386": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 123 + } + }, + "1388": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 124 + } + }, + "1389": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 126, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 126 + } + }, + "1391": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 126, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 126 + } + }, + "1393": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 127 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "1394": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 127 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1395": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 127 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1396": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 127 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1397": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 127 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1398": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 127 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1399": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 127 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1400": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 127 + } + }, + "1401": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 127 + } + }, + "1402": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 127 + } + }, + "1403": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 127 + } + }, + "1404": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 127 + } + }, + "1405": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 127 + } + }, + "1406": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 127 + } + }, + "1408": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1409": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1410": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1411": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1412": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1413": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1414": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1415": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1416": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1417": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1418": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1419": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1420": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1421": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1422": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1423": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1424": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1425": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1426": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1427": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1428": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1429": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1430": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1431": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1432": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1433": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1434": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1435": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1436": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1437": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1438": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1439": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1440": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1441": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1442": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1443": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1444": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1445": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1446": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1447": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1448": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1449": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1450": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1451": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1452": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1453": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1454": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1455": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1456": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1457": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1458": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1459": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1460": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1461": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1462": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1463": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1464": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1465": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1466": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1467": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1468": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1469": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1470": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1471": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1472": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1473": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1474": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1475": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1476": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1477": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1478": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1479": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1480": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1481": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1482": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1483": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1484": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1485": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1486": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1487": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1488": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1489": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1490": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1491": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1492": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1493": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1494": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1495": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1496": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1497": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 128 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1498": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 128 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "1499": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 128 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "1500": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 128 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "1502": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 128 + } + }, + "1504": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 129, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 129 + } + }, + "1505": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 131 + } + }, + "1507": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 131 + } + }, + "1509": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 132 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "1510": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 132 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1511": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 132 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1512": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 132 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1513": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 132 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1514": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 132 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1515": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 132 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1516": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 132 + } + }, + "1517": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 132 + } + }, + "1518": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 132 + } + }, + "1519": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 132 + } + }, + "1520": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 132 + } + }, + "1521": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 132 + } + }, + "1522": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 132 + } + }, + "1524": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1525": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1526": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1527": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1528": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1529": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1530": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1531": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1532": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1533": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1534": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1535": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1536": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1537": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1538": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1539": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1540": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1541": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1542": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1543": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1544": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1545": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1546": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1547": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1548": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1549": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1550": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1551": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1552": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1553": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1554": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1555": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1556": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1557": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1558": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1559": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1560": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1561": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1562": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1563": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1564": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1565": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1566": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1567": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1568": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1569": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1570": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1571": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1572": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1573": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1574": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1575": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1576": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1577": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1578": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1579": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1580": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1581": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1582": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1583": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1584": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1585": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1586": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1587": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1588": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1589": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1590": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1591": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1592": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1593": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1594": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1595": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1596": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1597": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1598": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1599": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1600": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1601": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1602": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1603": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1604": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1605": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1606": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1607": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1608": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1609": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1610": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1611": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1612": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1613": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 133 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1614": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 133 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "1615": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 133 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "1616": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 133 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "1618": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 133 + } + }, + "1620": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 134 + } + }, + "1621": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 137 + } + }, + "1623": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 137 + } + }, + "1625": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 138 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "1626": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 138 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1627": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 138 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1628": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 138 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1629": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 138 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1630": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 138 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1631": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 138 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1632": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 138 + } + }, + "1633": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 138 + } + }, + "1634": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 138 + } + }, + "1635": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 138 + } + }, + "1636": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 138 + } + }, + "1637": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 138 + } + }, + "1638": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 138 + } + }, + "1640": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1641": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1642": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1643": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1644": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1645": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1646": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1647": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1648": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1649": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1650": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1651": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1652": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1653": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1654": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1655": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1656": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1657": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1658": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1659": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1660": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1661": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1662": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1663": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1664": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1665": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1666": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1667": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1668": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1669": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1670": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1671": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1672": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1673": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1674": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1675": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1676": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1677": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1678": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1679": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1680": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1681": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1682": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1683": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1684": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1685": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1686": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1687": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1688": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1689": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1690": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1691": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1692": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1693": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1694": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1695": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1696": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1697": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1698": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1699": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1700": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1701": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1702": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1703": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1704": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1705": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1706": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1707": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1708": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1709": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1710": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1711": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1712": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1713": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1714": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1715": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1716": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1717": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1718": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1719": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1720": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1721": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1722": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1723": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1724": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1725": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1726": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1727": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1728": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1729": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 139 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1730": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 139 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "1731": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 139 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "1732": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 139 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "1734": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 139 + } + }, + "1736": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 140, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 140 + } + }, + "1737": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 142 + } + }, + "1739": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 142 + } + }, + "1741": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 143 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "1742": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 143 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1743": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 143 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1744": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 143 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1745": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 143 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1746": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 143 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1747": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 143 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1748": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 143 + } + }, + "1749": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 143 + } + }, + "1750": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 143 + } + }, + "1751": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 143 + } + }, + "1752": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 143 + } + }, + "1753": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 143 + } + }, + "1754": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 143 + } + }, + "1756": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1757": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1758": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1759": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1760": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1761": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1762": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1763": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1764": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1765": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1766": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1767": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1768": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1769": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1770": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1771": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1772": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1773": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1774": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1775": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1776": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1777": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1778": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1779": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1780": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1781": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1782": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1783": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1784": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1785": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1786": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1787": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1788": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1789": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1790": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1791": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1792": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1793": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1794": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1795": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1796": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1797": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1798": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1799": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1800": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1801": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1802": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1803": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1804": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1805": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1806": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1807": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1808": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1809": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1810": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1811": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1812": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1813": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1814": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1815": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1816": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1817": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1818": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1819": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1820": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1821": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1822": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1823": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1824": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1825": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1826": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1827": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1828": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1829": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1830": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1831": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1832": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1833": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1834": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1835": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1836": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1837": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1838": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1839": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1840": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1841": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1842": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1843": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1844": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1845": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 144 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1846": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 144 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "1847": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 144 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "1848": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 144 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "1850": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 144 + } + }, + "1852": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 145, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 145 + } + }, + "1853": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 147 + } + }, + "1855": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 147 + } + }, + "1857": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 148 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "1858": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 148 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1859": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 148 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1860": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 148 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1861": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 148 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1862": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 148 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1863": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 148 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1864": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 148 + } + }, + "1865": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 148 + } + }, + "1866": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 148 + } + }, + "1867": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 148 + } + }, + "1868": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 148 + } + }, + "1869": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 148 + } + }, + "1870": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 148 + } + }, + "1872": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1873": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1874": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1875": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1876": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1877": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1878": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1879": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1880": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1881": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1882": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1883": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1884": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1885": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1886": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1887": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1888": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1889": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1890": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1891": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1892": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1893": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1894": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1895": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1896": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1897": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1898": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1899": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1900": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1901": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1902": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1903": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1904": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1905": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1906": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1907": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1908": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1909": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1910": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1911": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1912": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1913": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1914": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1915": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1916": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1917": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1918": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1919": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1920": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1921": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1922": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1923": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1924": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1925": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1926": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1927": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1928": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1929": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1930": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1931": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1932": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1933": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1934": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1935": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1936": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1937": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1938": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1939": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1940": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1941": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1942": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1943": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1944": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1945": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1946": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1947": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1948": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1949": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1950": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1951": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1952": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1953": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1954": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1955": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1956": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1957": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1958": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1959": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1960": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1961": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 149 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1962": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 149 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "1963": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 149 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "1964": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 149 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "1966": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 149 + } + }, + "1968": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 150, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 150 + } + }, + "1969": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 152 + } + }, + "1971": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 152 + } + }, + "1973": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 153 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "1974": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 153 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1975": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 153 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1976": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 153 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1977": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 153 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1978": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 153 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1979": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 153 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "1980": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 153 + } + }, + "1981": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 153 + } + }, + "1982": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 153 + } + }, + "1983": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 153 + } + }, + "1984": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 153 + } + }, + "1985": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 153 + } + }, + "1986": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 153 + } + }, + "1988": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1989": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1990": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1991": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1992": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1993": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1994": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1995": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1996": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1997": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1998": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "1999": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2000": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2001": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2002": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2003": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2004": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2005": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2006": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2007": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2008": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2009": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2010": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2011": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2012": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2013": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2014": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2015": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2016": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2017": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2018": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2019": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2020": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2021": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2022": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2023": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2024": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2025": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2026": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2027": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2028": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2029": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2030": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2031": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2032": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2033": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2034": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2035": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2036": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2037": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2038": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2039": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2040": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2041": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2042": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2043": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2044": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2045": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2046": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2047": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2048": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2049": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2050": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2051": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2052": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2053": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2054": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2055": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2056": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2057": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2058": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2059": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2060": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2061": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2062": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2063": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2064": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2065": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2066": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2067": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2068": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2069": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2070": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2071": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2072": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2073": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2074": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2075": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2076": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2077": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 154 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2078": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 154 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "2079": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 154 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "2080": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 154 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "2082": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 154 + } + }, + "2084": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 155 + } + }, + "2085": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 157, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 157 + } + }, + "2087": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 157, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 157 + } + }, + "2089": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 158 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "2090": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 158 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2091": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 158 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2092": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 158 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2093": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 158 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2094": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 158 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2095": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 158 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2096": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 158 + } + }, + "2097": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 158 + } + }, + "2098": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 158 + } + }, + "2099": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 158 + } + }, + "2100": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 158 + } + }, + "2101": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 158 + } + }, + "2102": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 158 + } + }, + "2104": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2105": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2106": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2107": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2108": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2109": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2110": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2111": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2112": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2113": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2114": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2115": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2116": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2117": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2118": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2119": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2120": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2121": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2122": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2123": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2124": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2125": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2126": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2127": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2128": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2129": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2130": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2131": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2132": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2133": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2134": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2135": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2136": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2137": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2138": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2139": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2140": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2141": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2142": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2143": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2144": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2145": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2146": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2147": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2148": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2149": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2150": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2151": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2152": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2153": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2154": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2155": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2156": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2157": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2158": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2159": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2160": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2161": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2162": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2163": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2164": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2165": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2166": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2167": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2168": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2169": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2170": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2171": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2172": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2173": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2174": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2175": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2176": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2177": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2178": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2179": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2180": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2181": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2182": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2183": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2184": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2185": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2186": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2187": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2188": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2189": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2190": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2191": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2192": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2193": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 159 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2194": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 159 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "2195": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 159 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "2196": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 159 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "2198": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 159 + } + }, + "2200": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 160, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 160 + } + }, + "2201": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 162 + } + }, + "2203": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 162 + } + }, + "2205": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 163 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "2206": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 163 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2207": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 163 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2208": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 163 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2209": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 163 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2210": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 163 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2211": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 163 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2212": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 163 + } + }, + "2213": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 163 + } + }, + "2214": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 163 + } + }, + "2215": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 163 + } + }, + "2216": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 163 + } + }, + "2217": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 163 + } + }, + "2218": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 163 + } + }, + "2220": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2221": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2222": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2223": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2224": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2225": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2226": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2227": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2228": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2229": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2230": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2231": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2232": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2233": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2234": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2235": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2236": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2237": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2238": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2239": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2240": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2241": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2242": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2243": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2244": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2245": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2246": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2247": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2248": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2249": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2250": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2251": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2252": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2253": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2254": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2255": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2256": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2257": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2258": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2259": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2260": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2261": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2262": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2263": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2264": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2265": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2266": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2267": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2268": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2269": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2270": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2271": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2272": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2273": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2274": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2275": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2276": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2277": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2278": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2279": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2280": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2281": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2282": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2283": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2284": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2285": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2286": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2287": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2288": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2289": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2290": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2291": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2292": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2293": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2294": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2295": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2296": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2297": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2298": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2299": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2300": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2301": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2302": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2303": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2304": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2305": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2306": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2307": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2308": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2309": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 164 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2310": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 164 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "2311": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 164 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "2312": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 164 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "2314": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 164, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 164 + } + }, + "2316": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 165, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 165 + } + }, + "2317": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 167, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 167 + } + }, + "2319": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 167, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 167 + } + }, + "2321": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 168 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "2322": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 168 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2323": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 168 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2324": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 168 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2325": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 168 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2326": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 168 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2327": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 168 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2328": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 168 + } + }, + "2329": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 168 + } + }, + "2330": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 168 + } + }, + "2331": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 168 + } + }, + "2332": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 168 + } + }, + "2333": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 168 + } + }, + "2334": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 168 + } + }, + "2336": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2337": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2338": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2339": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2340": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2341": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2342": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2343": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2344": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2345": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2346": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2347": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2348": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2349": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2350": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2351": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2352": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2353": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2354": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2355": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2356": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2357": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2358": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2359": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2360": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2361": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2362": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2363": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2364": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2365": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2366": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2367": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2368": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2369": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2370": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2371": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2372": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2373": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2374": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2375": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2376": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2377": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2378": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2379": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2380": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2381": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2382": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2383": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2384": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2385": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2386": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2387": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2388": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2389": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2390": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2391": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2392": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2393": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2394": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2395": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2396": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2397": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2398": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2399": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2400": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2401": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2402": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2403": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2404": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2405": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2406": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2407": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2408": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2409": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2410": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2411": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2412": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2413": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2414": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2415": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2416": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2417": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2418": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2419": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2420": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2421": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2422": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2423": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2424": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2425": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 169 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2426": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 169 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "2427": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 169 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "2428": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 169 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "2430": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 169 + } + }, + "2432": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 170 + } + }, + "2433": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 172 + } + }, + "2435": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 172 + } + }, + "2437": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "2438": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 173 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2439": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 173 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2440": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 173 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2441": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 173 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2442": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 173 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2443": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 173 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2444": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 173 + } + }, + "2445": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 173 + } + }, + "2446": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 173 + } + }, + "2447": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 173 + } + }, + "2448": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 173 + } + }, + "2449": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 173 + } + }, + "2450": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 173, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 173 + } + }, + "2452": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2453": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2454": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2455": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2456": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2457": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2458": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2459": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2460": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2461": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2462": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2463": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2464": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2465": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2466": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2467": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2468": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2469": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2470": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2471": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2472": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2473": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2474": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2475": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2476": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2477": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2478": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2479": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2480": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2481": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2482": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2483": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2484": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2485": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2486": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2487": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2488": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2489": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2490": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2491": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2492": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2493": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2494": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2495": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2496": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2497": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2498": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2499": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2500": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2501": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2502": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2503": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2504": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2505": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2506": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2507": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2508": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2509": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2510": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2511": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2512": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2513": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2514": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2515": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2516": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2517": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2518": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2519": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2520": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2521": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2522": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2523": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2524": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2525": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2526": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2527": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2528": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2529": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2530": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2531": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2532": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2533": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2534": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2535": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2536": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2537": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2538": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2539": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2540": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2541": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 174 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2542": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 174 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "2543": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 174 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "2544": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 174 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "2546": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 174 + } + }, + "2548": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 175, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 175 + } + }, + "2549": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 177, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 177 + } + }, + "2551": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 177, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 177 + } + }, + "2553": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 178 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "2554": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 178 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2555": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 178 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2556": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 178 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2557": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 178 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2558": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 178 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2559": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 178 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2560": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 178 + } + }, + "2561": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 178 + } + }, + "2562": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 178 + } + }, + "2563": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 178 + } + }, + "2564": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 178 + } + }, + "2565": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 178 + } + }, + "2566": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 178 + } + }, + "2568": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2569": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2570": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2571": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2572": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2573": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2574": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2575": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2576": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2577": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2578": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2579": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2580": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2581": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2582": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2583": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2584": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2585": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2586": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2587": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2588": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2589": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2590": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2591": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2592": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2593": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2594": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2595": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2596": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2597": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2598": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2599": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2600": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2601": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2602": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2603": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2604": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2605": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2606": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2607": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2608": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2609": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2610": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2611": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2612": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2613": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2614": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2615": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2616": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2617": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2618": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2619": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2620": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2621": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2622": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2623": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2624": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2625": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2626": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2627": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2628": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2629": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2630": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2631": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2632": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2633": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2634": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2635": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2636": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2637": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2638": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2639": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2640": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2641": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2642": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2643": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2644": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2645": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2646": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2647": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2648": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2649": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2650": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2651": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2652": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2653": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2654": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2655": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2656": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2657": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 179 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2658": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 179 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "2659": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 179 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "2660": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 179 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "2662": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 179 + } + }, + "2664": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 180, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 180 + } + }, + "2665": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 182, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 182 + } + }, + "2667": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 182, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 182 + } + }, + "2669": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "2670": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 183 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2671": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 183 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2672": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 183 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2673": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 183 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2674": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 183 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2675": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 183 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2676": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 183 + } + }, + "2677": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 183 + } + }, + "2678": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 183 + } + }, + "2679": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 183 + } + }, + "2680": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 183 + } + }, + "2681": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 183 + } + }, + "2682": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 183 + } + }, + "2684": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2685": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2686": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2687": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2688": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2689": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2690": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2691": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2692": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2693": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2694": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2695": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2696": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2697": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2698": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2699": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2700": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2701": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2702": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2703": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2704": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2705": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2706": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2707": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2708": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2709": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2710": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2711": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2712": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2713": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2714": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2715": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2716": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2717": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2718": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2719": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2720": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2721": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2722": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2723": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2724": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2725": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2726": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2727": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2728": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2729": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2730": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2731": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2732": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2733": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2734": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2735": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2736": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2737": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2738": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2739": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2740": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2741": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2742": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2743": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2744": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2745": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2746": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2747": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2748": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2749": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2750": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2751": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2752": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2753": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2754": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2755": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2756": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2757": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2758": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2759": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2760": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2761": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2762": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2763": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2764": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2765": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2766": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2767": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2768": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2769": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2770": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2771": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2772": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2773": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 184 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2774": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 184 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "2775": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 184 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "2776": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 184 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "2778": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 184, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 184 + } + }, + "2780": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 185 + } + }, + "2781": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 187, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 187 + } + }, + "2783": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 187, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 187 + } + }, + "2785": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "2786": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 188 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2787": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 188 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2788": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 188 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2789": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 188 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2790": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 188 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2791": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 188 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2792": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 188 + } + }, + "2793": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 188 + } + }, + "2794": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 188 + } + }, + "2795": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 188 + } + }, + "2796": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 188 + } + }, + "2797": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 188 + } + }, + "2798": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 188 + } + }, + "2800": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2801": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2802": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2803": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2804": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2805": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2806": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2807": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2808": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2809": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2810": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2811": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2812": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2813": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2814": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2815": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2816": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2817": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2818": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2819": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2820": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2821": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2822": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2823": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2824": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2825": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2826": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2827": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2828": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2829": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2830": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2831": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2832": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2833": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2834": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2835": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2836": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2837": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2838": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2839": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2840": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2841": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2842": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2843": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2844": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2845": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2846": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2847": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2848": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2849": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2850": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2851": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2852": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2853": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2854": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2855": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2856": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2857": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2858": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2859": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2860": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2861": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2862": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2863": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2864": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2865": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2866": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2867": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2868": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2869": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2870": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2871": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2872": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2873": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2874": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2875": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2876": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2877": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2878": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2879": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2880": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2881": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2882": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2883": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2884": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2885": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2886": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2887": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2888": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2889": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 189 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2890": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 189 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "2891": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 189 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "2892": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 189 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "2894": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 189 + } + }, + "2896": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 190 + } + }, + "2897": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 192, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 192 + } + }, + "2899": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 192, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 192 + } + }, + "2901": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 193 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "2902": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 193 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2903": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 193 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2904": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 193 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2905": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 193 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2906": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 193 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2907": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 193 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "2908": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 193 + } + }, + "2909": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 193 + } + }, + "2910": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 193 + } + }, + "2911": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 193 + } + }, + "2912": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 193 + } + }, + "2913": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 193 + } + }, + "2914": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 193 + } + }, + "2916": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2917": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2918": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2919": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2920": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2921": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2922": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2923": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2924": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2925": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2926": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2927": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2928": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2929": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2930": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2931": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2932": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2933": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2934": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2935": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2936": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2937": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2938": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2939": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2940": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2941": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2942": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2943": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2944": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2945": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2946": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2947": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2948": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2949": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2950": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2951": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2952": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2953": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2954": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2955": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2956": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2957": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2958": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2959": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2960": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2961": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2962": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2963": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2964": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2965": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2966": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2967": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2968": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2969": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2970": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2971": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2972": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2973": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2974": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2975": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2976": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2977": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2978": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2979": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2980": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2981": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2982": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2983": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2984": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2985": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2986": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2987": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2988": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2989": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2990": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2991": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2992": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2993": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2994": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2995": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2996": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2997": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2998": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "2999": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3000": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3001": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3002": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3003": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3004": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3005": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 194 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3006": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 194 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "3007": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 194 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "3008": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 194 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "3010": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 194 + } + }, + "3012": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 195, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 195 + } + }, + "3013": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 197 + } + }, + "3015": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 197 + } + }, + "3017": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "3018": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 198 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "3019": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 198 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "3020": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 198 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "3021": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 198 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "3022": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 198 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "3023": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 31, + "start_line": 198 + }, + "While expanding the reference 'quadruple_point' in:" + ], + "start_col": 10, + "start_line": 110 + } + }, + "3024": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 198 + } + }, + "3025": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 198 + } + }, + "3026": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 198 + } + }, + "3027": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 198 + } + }, + "3028": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 198 + } + }, + "3029": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 47, + "start_line": 198 + } + }, + "3030": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 24, + "start_line": 198 + } + }, + "3032": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3033": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3034": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3035": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3036": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3037": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3038": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3039": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3040": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3041": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3042": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3043": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3044": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3045": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3046": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3047": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3048": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3049": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3050": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3051": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3052": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3053": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3054": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3055": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3056": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3057": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3058": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3059": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3060": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3061": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3062": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3063": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3064": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3065": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3066": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3067": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3068": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3069": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3070": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3071": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3072": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3073": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3074": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3075": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3076": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3077": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3078": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3079": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3080": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3081": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3082": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3083": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3084": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3085": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3086": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3087": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3088": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3089": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3090": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3091": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3092": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3093": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3094": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3095": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3096": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3097": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3098": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3099": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3100": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3101": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3102": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3103": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3104": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3105": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3106": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3107": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3108": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3109": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3110": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3111": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3112": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3113": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3114": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3115": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3116": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3117": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3118": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3119": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3120": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3121": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 50, + "start_line": 199 + }, + "While expanding the reference 'Prec' in:" + ], + "start_col": 17, + "start_line": 89 + } + }, + "3122": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 56, + "start_line": 199 + }, + "While expanding the reference 'scalar_u' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "3123": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 66, + "start_line": 199 + }, + "While expanding the reference 'scalar_v' in:" + ], + "start_col": 21, + "start_line": 90 + } + }, + "3124": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 76, + "start_line": 199 + }, + "While expanding the reference 'mm2' in:" + ], + "start_col": 15, + "start_line": 93 + } + }, + "3126": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 21, + "start_line": 199 + } + }, + "3128": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 9, + "start_line": 200 + } + }, + "3129": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 204 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 88 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "3130": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 204 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "3131": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 204 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "3132": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 204 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "3133": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 204 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "3134": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 204 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "3135": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 17, + "start_line": 204 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "3136": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "start_col": 5, + "start_line": 204 + } + }, + "3137": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 34 + } + }, + "3139": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 30, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 30 + } + }, + "3140": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 43 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3141": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 43 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3142": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 43 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3143": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 43 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3144": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 43 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3145": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 43 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3146": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 43 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3147": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 43 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3148": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 43 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3149": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 43 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3150": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 43 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3151": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 43 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3152": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 43 + } + }, + "3154": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 43 + }, + "While auto generating local variable for 'W3'." + ], + "start_col": 10, + "start_line": 43 + } + }, + "3155": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 43 + }, + "While auto generating local variable for 'W3'." + ], + "start_col": 10, + "start_line": 43 + } + }, + "3156": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 43 + }, + "While auto generating local variable for 'W3'." + ], + "start_col": 10, + "start_line": 43 + } + }, + "3157": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 43 + }, + "While auto generating local variable for 'W3'." + ], + "start_col": 10, + "start_line": 43 + } + }, + "3158": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 43 + }, + "While auto generating local variable for 'W3'." + ], + "start_col": 10, + "start_line": 43 + } + }, + "3159": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 43 + }, + "While auto generating local variable for 'W3'." + ], + "start_col": 10, + "start_line": 43 + } + }, + "3160": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 44 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 43 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + } + }, + "3161": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 44 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3162": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 44 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3163": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 44 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3164": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 44 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3165": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 44 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3166": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 44 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3167": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 44 + } + }, + "3169": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3170": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3171": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3172": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3173": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3174": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3175": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 44 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "3176": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 45 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3177": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 45 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3178": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 45 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3179": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 45 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3180": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 45 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3181": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 45 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3182": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 45 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3183": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 45 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3184": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 45 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3185": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 45 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3186": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 45 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3187": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 25, + "start_line": 45 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3188": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 45 + } + }, + "3190": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3191": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3192": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3193": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3194": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3195": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3196": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 46 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 45 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + } + }, + "3197": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 46 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3198": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 46 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3199": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 46 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3200": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 46 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3201": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 46 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3202": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 46 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3203": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 46 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3204": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 46 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3205": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 46 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3206": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 46 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3207": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 46 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3208": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 46 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3209": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 46 + } + }, + "3211": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 46 + }, + "While auto generating local variable for 'W6'." + ], + "start_col": 10, + "start_line": 46 + } + }, + "3212": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 46 + }, + "While auto generating local variable for 'W6'." + ], + "start_col": 10, + "start_line": 46 + } + }, + "3213": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 46 + }, + "While auto generating local variable for 'W6'." + ], + "start_col": 10, + "start_line": 46 + } + }, + "3214": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 46 + }, + "While auto generating local variable for 'W6'." + ], + "start_col": 10, + "start_line": 46 + } + }, + "3215": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 46 + }, + "While auto generating local variable for 'W6'." + ], + "start_col": 10, + "start_line": 46 + } + }, + "3216": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 46 + }, + "While auto generating local variable for 'W6'." + ], + "start_col": 10, + "start_line": 46 + } + }, + "3217": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 46, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 47 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 46 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + } + }, + "3218": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 47 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3219": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 47 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3220": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 47 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3221": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 47 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3222": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 47 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3223": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 47 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3224": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 47 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3225": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 47 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3226": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 47 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3227": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 47 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3228": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 47 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3229": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 47 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3230": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 47 + } + }, + "3232": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 47 + }, + "While auto generating local variable for 'W7'." + ], + "start_col": 10, + "start_line": 47 + } + }, + "3233": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 47 + }, + "While auto generating local variable for 'W7'." + ], + "start_col": 10, + "start_line": 47 + } + }, + "3234": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 47 + }, + "While auto generating local variable for 'W7'." + ], + "start_col": 10, + "start_line": 47 + } + }, + "3235": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 47 + }, + "While auto generating local variable for 'W7'." + ], + "start_col": 10, + "start_line": 47 + } + }, + "3236": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 47 + }, + "While auto generating local variable for 'W7'." + ], + "start_col": 10, + "start_line": 47 + } + }, + "3237": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 47 + }, + "While auto generating local variable for 'W7'." + ], + "start_col": 10, + "start_line": 47 + } + }, + "3238": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 47 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + } + }, + "3239": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 48 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3240": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 48 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3241": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 48 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3242": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 48 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3243": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 48 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3244": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 48 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3245": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 48 + } + }, + "3247": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3248": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3249": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3250": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3251": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3252": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3253": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 48 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 106 + } + }, + "3254": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 50 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3255": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 50 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3256": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 50 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3257": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 50 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3258": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 50 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3259": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 23, + "start_line": 50 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3260": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 50 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3261": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 50 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3262": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 50 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3263": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 50 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3264": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 50 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3265": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 26, + "start_line": 50 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3266": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 16, + "start_line": 50 + } + }, + "3268": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 50 + }, + "While auto generating local variable for 'W9'." + ], + "start_col": 10, + "start_line": 50 + } + }, + "3269": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 50 + }, + "While auto generating local variable for 'W9'." + ], + "start_col": 10, + "start_line": 50 + } + }, + "3270": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 50 + }, + "While auto generating local variable for 'W9'." + ], + "start_col": 10, + "start_line": 50 + } + }, + "3271": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 50 + }, + "While auto generating local variable for 'W9'." + ], + "start_col": 10, + "start_line": 50 + } + }, + "3272": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 50 + }, + "While auto generating local variable for 'W9'." + ], + "start_col": 10, + "start_line": 50 + } + }, + "3273": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 50 + }, + "While auto generating local variable for 'W9'." + ], + "start_col": 10, + "start_line": 50 + } + }, + "3274": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 50 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + } + }, + "3275": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3276": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3277": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3278": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3279": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3280": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3281": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 51 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3282": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 51 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3283": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 51 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3284": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 51 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3285": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 51 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3286": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 51 + }, + "While expanding the reference 'Q' in:" + ], + "start_col": 17, + "start_line": 31 + } + }, + "3287": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 51 + } + }, + "3289": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3290": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3291": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3292": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3293": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3294": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3295": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 52 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 51 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + } + }, + "3296": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 52 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3297": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 52 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3298": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 52 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3299": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 52 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3300": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 52 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3301": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 52 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3302": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 52 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3303": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 52 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3304": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 52 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3305": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 52 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3306": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 52 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3307": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 52 + }, + "While expanding the reference 'G' in:" + ], + "start_col": 5, + "start_line": 31 + } + }, + "3308": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 52 + } + }, + "3310": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 52 + }, + "While auto generating local variable for 'W11'." + ], + "start_col": 10, + "start_line": 52 + } + }, + "3311": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 52 + }, + "While auto generating local variable for 'W11'." + ], + "start_col": 10, + "start_line": 52 + } + }, + "3312": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 52 + }, + "While auto generating local variable for 'W11'." + ], + "start_col": 10, + "start_line": 52 + } + }, + "3313": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 52 + }, + "While auto generating local variable for 'W11'." + ], + "start_col": 10, + "start_line": 52 + } + }, + "3314": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 52 + }, + "While auto generating local variable for 'W11'." + ], + "start_col": 10, + "start_line": 52 + } + }, + "3315": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 52 + }, + "While auto generating local variable for 'W11'." + ], + "start_col": 10, + "start_line": 52 + } + }, + "3316": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 53 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 52 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + } + }, + "3317": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 53 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3318": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 53 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3319": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 53 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3320": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 53 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3321": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 53 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3322": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 53 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3323": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 53 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3324": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 53 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3325": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 53 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3326": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 53 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3327": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 53 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3328": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 53 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3329": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 53 + } + }, + "3331": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 53 + }, + "While auto generating local variable for 'W12'." + ], + "start_col": 10, + "start_line": 53 + } + }, + "3332": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 53 + }, + "While auto generating local variable for 'W12'." + ], + "start_col": 10, + "start_line": 53 + } + }, + "3333": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 53 + }, + "While auto generating local variable for 'W12'." + ], + "start_col": 10, + "start_line": 53 + } + }, + "3334": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 53 + }, + "While auto generating local variable for 'W12'." + ], + "start_col": 10, + "start_line": 53 + } + }, + "3335": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 53 + }, + "While auto generating local variable for 'W12'." + ], + "start_col": 10, + "start_line": 53 + } + }, + "3336": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 53 + }, + "While auto generating local variable for 'W12'." + ], + "start_col": 10, + "start_line": 53 + } + }, + "3337": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 53 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + } + }, + "3338": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 54 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3339": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 54 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3340": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 54 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3341": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 54 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3342": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 54 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3343": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 54 + }, + "While expanding the reference 'W8' in:" + ], + "start_col": 10, + "start_line": 48 + }, + "While auto generating local variable for 'W8'." + ], + "start_col": 10, + "start_line": 48 + } + }, + "3344": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 54 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3345": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 54 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3346": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 54 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3347": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 54 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3348": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 54 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3349": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 27, + "start_line": 54 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3350": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 54 + } + }, + "3352": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 54 + }, + "While auto generating local variable for 'W13'." + ], + "start_col": 10, + "start_line": 54 + } + }, + "3353": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 54 + }, + "While auto generating local variable for 'W13'." + ], + "start_col": 10, + "start_line": 54 + } + }, + "3354": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 54 + }, + "While auto generating local variable for 'W13'." + ], + "start_col": 10, + "start_line": 54 + } + }, + "3355": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 54 + }, + "While auto generating local variable for 'W13'." + ], + "start_col": 10, + "start_line": 54 + } + }, + "3356": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 54 + }, + "While auto generating local variable for 'W13'." + ], + "start_col": 10, + "start_line": 54 + } + }, + "3357": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 54 + }, + "While auto generating local variable for 'W13'." + ], + "start_col": 10, + "start_line": 54 + } + }, + "3358": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 55 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 54 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + } + }, + "3359": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 55 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3360": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 55 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3361": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 55 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3362": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 55 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3363": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 55 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3364": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 55 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3365": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 55 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3366": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 55 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3367": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 55 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3368": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 55 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3369": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 55 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3370": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 44, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 55 + }, + "While expanding the reference 'W4' in:" + ], + "start_col": 10, + "start_line": 44 + }, + "While auto generating local variable for 'W4'." + ], + "start_col": 10, + "start_line": 44 + } + }, + "3371": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 55 + } + }, + "3373": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 55 + }, + "While auto generating local variable for 'W14'." + ], + "start_col": 10, + "start_line": 55 + } + }, + "3374": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 55 + }, + "While auto generating local variable for 'W14'." + ], + "start_col": 10, + "start_line": 55 + } + }, + "3375": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 55 + }, + "While auto generating local variable for 'W14'." + ], + "start_col": 10, + "start_line": 55 + } + }, + "3376": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 55 + }, + "While auto generating local variable for 'W14'." + ], + "start_col": 10, + "start_line": 55 + } + }, + "3377": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 55 + }, + "While auto generating local variable for 'W14'." + ], + "start_col": 10, + "start_line": 55 + } + }, + "3378": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 10, + "start_line": 55 + }, + "While auto generating local variable for 'W14'." + ], + "start_col": 10, + "start_line": 55 + } + }, + "3379": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 56 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 55 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + } + }, + "3380": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 56 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3381": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 56 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3382": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 56 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3383": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 56 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3384": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 56 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3385": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 24, + "start_line": 56 + }, + "While expanding the reference 'W10' in:" + ], + "start_col": 10, + "start_line": 51 + }, + "While auto generating local variable for 'W10'." + ], + "start_col": 10, + "start_line": 51 + } + }, + "3386": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 56 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3387": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 56 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3388": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 56 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3389": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 56 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3390": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 56 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3391": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 28, + "start_line": 56 + }, + "While expanding the reference 'W5' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While auto generating local variable for 'W5'." + ], + "start_col": 10, + "start_line": 45 + } + }, + "3392": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 56 + } + }, + "3394": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3395": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3396": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3397": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3398": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3399": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3400": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3401": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3402": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3403": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3404": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3405": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3406": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3407": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3408": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3409": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3410": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3411": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3412": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3413": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3414": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3415": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3416": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3417": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3418": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3419": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3420": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3421": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3422": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3423": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3424": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3425": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3426": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3427": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3428": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3429": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3430": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3431": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3432": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3433": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3434": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3435": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3436": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3437": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3438": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3439": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3440": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3441": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3442": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3443": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3444": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3445": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3446": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3447": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3448": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3449": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3450": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3451": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3452": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3453": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3454": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3455": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3456": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3457": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3458": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3459": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3460": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3461": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3462": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3463": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3464": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3465": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3466": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3467": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3468": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3469": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3470": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3471": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3472": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3473": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3474": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3475": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3476": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3477": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3478": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3479": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3480": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3481": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3482": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3483": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "3484": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "3486": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "3488": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "3490": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "3492": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "3494": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "3496": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 89, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 64 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 39, + "end_line": 66, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 66 + } + }, + "3497": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 36, + "start_line": 67 + } + }, + "3499": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 36, + "start_line": 67 + } + }, + "3500": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 67 + } + }, + "3501": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 70 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 88 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 68 + } + }, + "3503": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 38, + "start_line": 70 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 11, + "start_line": 62 + } + }, + "3504": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 38, + "start_line": 70 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 11, + "start_line": 62 + } + }, + "3505": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 38, + "start_line": 70 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 11, + "start_line": 62 + } + }, + "3506": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 38, + "start_line": 70 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 11, + "start_line": 62 + } + }, + "3507": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 38, + "start_line": 70 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 11, + "start_line": 62 + } + }, + "3508": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 38, + "start_line": 70 + }, + "While expanding the reference 'R' in:" + ], + "start_col": 11, + "start_line": 62 + } + }, + "3509": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3510": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3511": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3512": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3513": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3514": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3515": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3516": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3517": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3518": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3519": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3520": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3521": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3522": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3523": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3524": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3525": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3526": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3527": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3528": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3529": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3530": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3531": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3532": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3533": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3534": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3535": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3536": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3537": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3538": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3539": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3540": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3541": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3542": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3543": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3544": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3545": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3546": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3547": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3548": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3549": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3550": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3551": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3552": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3553": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3554": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3555": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3556": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3557": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3558": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3559": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3560": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3561": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3562": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3563": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3564": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3565": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3566": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3567": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3568": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3569": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3570": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3571": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3572": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3573": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3574": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3575": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3576": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3577": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3578": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3579": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3580": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3581": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3582": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3583": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3584": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3585": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3586": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3587": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3588": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3589": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3590": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3591": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3592": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3593": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3594": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3595": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3596": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3597": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3598": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 41, + "start_line": 70 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3599": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 52, + "start_line": 70 + } + }, + "3600": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 65, + "start_line": 70 + } + }, + "3601": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 35, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 78, + "start_line": 70 + }, + "While expanding the reference 'len_hi' in:" + ], + "start_col": 11, + "start_line": 35 + } + }, + "3602": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 17, + "start_line": 70 + } + }, + "3604": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3605": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3606": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3607": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3608": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3609": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3610": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3611": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3612": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3613": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3614": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3615": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3616": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3617": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3618": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3619": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3620": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3621": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3622": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3623": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3624": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3625": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3626": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3627": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3628": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3629": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3630": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3631": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3632": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3633": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3634": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3635": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3636": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3637": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3638": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3639": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3640": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3641": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3642": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3643": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3644": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3645": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3646": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3647": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3648": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3649": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3650": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3651": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3652": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3653": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3654": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3655": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3656": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3657": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3658": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3659": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3660": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3661": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3662": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3663": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3664": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3665": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3666": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3667": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3668": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3669": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3670": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3671": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3672": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3673": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3674": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3675": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3676": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3677": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3678": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3679": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3680": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3681": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3682": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3683": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3684": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3685": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3686": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3687": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3688": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3689": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3690": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3691": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3692": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3693": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 44, + "start_line": 71 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3694": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 55, + "start_line": 71 + } + }, + "3695": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 68, + "start_line": 71 + } + }, + "3696": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 81, + "start_line": 71 + } + }, + "3698": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 18, + "start_line": 71 + } + }, + "3700": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3701": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3702": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3703": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3704": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3705": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3706": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3707": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3708": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3709": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3710": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3711": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3712": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3713": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3714": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3715": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3716": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3717": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3718": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3719": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3720": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3721": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3722": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3723": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3724": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3725": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3726": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3727": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3728": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3729": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3730": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3731": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3732": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3733": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3734": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3735": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3736": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3737": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3738": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3739": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3740": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3741": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3742": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3743": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3744": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3745": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3746": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3747": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3748": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3749": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3750": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3751": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3752": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3753": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3754": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3755": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3756": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3757": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3758": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3759": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3760": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3761": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3762": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3763": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3764": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3765": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3766": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3767": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3768": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3769": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3770": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3771": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3772": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3773": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3774": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3775": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3776": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3777": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3778": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3779": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3780": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3781": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3782": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3783": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3784": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3785": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3786": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3787": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3788": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3789": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 45, + "start_line": 72 + }, + "While expanding the reference 'PrecPoint' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "3790": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 56, + "start_line": 72 + } + }, + "3791": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 69, + "start_line": 72 + } + }, + "3792": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 82, + "start_line": 72 + } + }, + "3794": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 18, + "start_line": 72 + } + }, + "3796": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 74, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "start_col": 5, + "start_line": 74 + } + }, + "3797": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.get_generator_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 17, + "start_line": 32 + } + }, + "3799": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.get_generator_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 22, + "start_line": 32 + } + }, + "3801": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.get_generator_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 27, + "start_line": 32 + } + }, + "3803": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.get_generator_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 17, + "start_line": 33 + } + }, + "3805": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.get_generator_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 22, + "start_line": 33 + } + }, + "3807": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.get_generator_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 27, + "start_line": 33 + } + }, + "3809": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.get_generator_point" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 8, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "3810": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 89, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 48 + }, + "n_prefix_newlines": 0 + }, + { + "location": { + "end_col": 7, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 49 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 31, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 17, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 47 + } + }, + "3811": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 17, + "start_line": 57 + } + }, + "3813": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 61, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 59 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 24, + "start_line": 62 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 57 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 17 + } + }, + "3814": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 62, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 24, + "start_line": 62 + } + }, + "3816": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 30, + "start_line": 65 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 57 + } + }, + "3817": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 30, + "start_line": 65 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 57 + } + }, + "3818": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 30, + "start_line": 65 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 57 + } + }, + "3819": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 35, + "start_line": 65 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 45, + "start_line": 47 + } + }, + "3820": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 35, + "start_line": 65 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 45, + "start_line": 47 + } + }, + "3821": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 35, + "start_line": 65 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 45, + "start_line": 47 + } + }, + "3822": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 19, + "start_line": 65 + } + }, + "3824": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 28, + "start_line": 67 + }, + "While expanding the reference 'k' in:" + ], + "start_col": 24, + "start_line": 63 + } + }, + "3826": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 28, + "start_line": 67 + }, + "While expanding the reference 'k' in:" + ], + "start_col": 46, + "start_line": 63 + } + }, + "3827": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 28, + "start_line": 67 + }, + "While expanding the reference 'k' in:" + ], + "start_col": 64, + "start_line": 63 + } + }, + "3828": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 66, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 31, + "start_line": 67 + }, + "While expanding the reference 'n' in:" + ], + "start_col": 21, + "start_line": 66 + } + }, + "3830": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 66, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 31, + "start_line": 67 + }, + "While expanding the reference 'n' in:" + ], + "start_col": 25, + "start_line": 66 + } + }, + "3832": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 66, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 31, + "start_line": 67 + }, + "While expanding the reference 'n' in:" + ], + "start_col": 29, + "start_line": 66 + } + }, + "3834": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 17, + "start_line": 67 + } + }, + "3836": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 23, + "start_line": 72 + } + }, + "3837": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 23, + "start_line": 72 + } + }, + "3838": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 22, + "start_line": 72 + } + }, + "3840": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 73, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 36, + "start_line": 73 + } + }, + "3842": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 73, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 73 + } + }, + "3843": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 23, + "start_line": 75 + } + }, + "3844": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 23, + "start_line": 75 + } + }, + "3845": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 23, + "start_line": 75 + } + }, + "3846": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 75, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 22, + "start_line": 75 + } + }, + "3848": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 36, + "start_line": 76 + } + }, + "3850": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 76 + } + }, + "3851": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 23, + "start_line": 78 + } + }, + "3852": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 23, + "start_line": 78 + } + }, + "3853": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 23, + "start_line": 78 + } + }, + "3854": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 22, + "start_line": 78 + } + }, + "3856": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 36, + "start_line": 79 + } + }, + "3858": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 79 + } + }, + "3859": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 23, + "start_line": 81 + } + }, + "3860": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 23, + "start_line": 81 + } + }, + "3861": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 22, + "start_line": 81 + } + }, + "3863": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 36, + "start_line": 82 + } + }, + "3865": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 82 + } + }, + "3866": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 84, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 12, + "start_line": 84 + } + }, + "3867": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 84, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 41, + "start_line": 84 + } + }, + "3869": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 84, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 84 + } + }, + "3870": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 86, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 88 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 47 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 86 + } + }, + "3872": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 17, + "start_line": 88 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 57 + } + }, + "3873": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 17, + "start_line": 88 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 57 + } + }, + "3874": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 17, + "start_line": 88 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 57 + } + }, + "3875": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 88 + } + }, + "3876": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 92, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 93 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 70 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 92 + } + }, + "3877": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 18, + "start_line": 93 + } + }, + "3878": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 26, + "start_line": 93 + } + }, + "3880": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 93 + } + }, + "3882": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 94, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 18, + "start_line": 94 + } + }, + "3883": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 94, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 26, + "start_line": 94 + } + }, + "3885": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 94, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 94 + } + }, + "3887": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 18, + "start_line": 95 + } + }, + "3888": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 26, + "start_line": 95 + } + }, + "3890": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 95 + } + }, + "3892": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 97 + } + }, + "3894": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 97 + } + }, + "3896": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 13, + "start_line": 98 + } + }, + "3898": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 98 + } + }, + "3900": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 13, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 70 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 95 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 70 + } + }, + "3901": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 26, + "start_line": 99 + } + }, + "3902": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 34, + "start_line": 99 + } + }, + "3904": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 13, + "start_line": 99 + } + }, + "3906": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 13, + "start_line": 100 + } + }, + "3907": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 70 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 95 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 70 + } + }, + "3908": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 22, + "start_line": 102 + } + }, + "3909": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 30, + "start_line": 102 + } + }, + "3911": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 102 + } + }, + "3913": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 103 + } + }, + "3914": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 107 + } + }, + "3916": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 108 + } + }, + "3918": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 109, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 29, + "start_line": 109 + } + }, + "3919": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 109, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 13, + "start_line": 109 + } + }, + "3921": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 92, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 13, + "start_line": 110 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 92 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 95 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 70 + } + }, + "3922": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 13, + "start_line": 110 + } + }, + "3923": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 92, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 113, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 113 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 92 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 95 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 70 + } + }, + "3924": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 113, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "3925": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 122 + } + }, + "3927": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 92, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 92 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 119 + } + }, + "3928": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 34, + "start_line": 125 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 24, + "start_line": 120 + } + }, + "3929": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 34, + "start_line": 125 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 24, + "start_line": 120 + } + }, + "3930": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 34, + "start_line": 125 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 24, + "start_line": 120 + } + }, + "3931": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 125 + } + }, + "3933": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 126, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 34, + "start_line": 126 + }, + "While expanding the reference 's' in:" + ], + "start_col": 36, + "start_line": 120 + } + }, + "3934": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 126, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 34, + "start_line": 126 + }, + "While expanding the reference 's' in:" + ], + "start_col": 36, + "start_line": 120 + } + }, + "3935": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 126, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 34, + "start_line": 126 + }, + "While expanding the reference 's' in:" + ], + "start_col": 36, + "start_line": 120 + } + }, + "3936": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 126, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 126 + } + }, + "3938": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 42, + "start_line": 130 + } + }, + "3940": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 92, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 126, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 29, + "start_line": 132 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 47 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 126 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 92 + } + }, + "3941": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 39, + "start_line": 132 + }, + "While expanding the reference 'msg_hash' in:" + ], + "start_col": 5, + "start_line": 120 + } + }, + "3942": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 39, + "start_line": 132 + }, + "While expanding the reference 'msg_hash' in:" + ], + "start_col": 5, + "start_line": 120 + } + }, + "3943": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 39, + "start_line": 132 + }, + "While expanding the reference 'msg_hash' in:" + ], + "start_col": 5, + "start_line": 120 + } + }, + "3944": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 49, + "start_line": 132 + }, + "While expanding the reference 's' in:" + ], + "start_col": 36, + "start_line": 120 + } + }, + "3945": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 49, + "start_line": 132 + }, + "While expanding the reference 's' in:" + ], + "start_col": 36, + "start_line": 120 + } + }, + "3946": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 49, + "start_line": 132 + }, + "While expanding the reference 's' in:" + ], + "start_col": 36, + "start_line": 120 + } + }, + "3947": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 29, + "start_line": 132 + } + }, + "3949": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 29, + "start_line": 133 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 47 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 132 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 47 + } + }, + "3950": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 39, + "start_line": 133 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 24, + "start_line": 120 + } + }, + "3951": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 39, + "start_line": 133 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 24, + "start_line": 120 + } + }, + "3952": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 39, + "start_line": 133 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 24, + "start_line": 120 + } + }, + "3953": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 42, + "start_line": 133 + }, + "While expanding the reference 's' in:" + ], + "start_col": 36, + "start_line": 120 + } + }, + "3954": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 42, + "start_line": 133 + }, + "While expanding the reference 's' in:" + ], + "start_col": 36, + "start_line": 120 + } + }, + "3955": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 42, + "start_line": 133 + }, + "While expanding the reference 's' in:" + ], + "start_col": 36, + "start_line": 120 + } + }, + "3956": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 29, + "start_line": 133 + } + }, + "3958": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 30, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 24, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 30 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 133 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 47 + } + }, + "3959": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 42, + "start_line": 135 + }, + "While expanding the reference 'generator_point' in:" + ], + "start_col": 14, + "start_line": 130 + } + }, + "3960": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 42, + "start_line": 135 + }, + "While expanding the reference 'generator_point' in:" + ], + "start_col": 14, + "start_line": 130 + } + }, + "3961": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 42, + "start_line": 135 + }, + "While expanding the reference 'generator_point' in:" + ], + "start_col": 14, + "start_line": 130 + } + }, + "3962": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 42, + "start_line": 135 + }, + "While expanding the reference 'generator_point' in:" + ], + "start_col": 14, + "start_line": 130 + } + }, + "3963": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 42, + "start_line": 135 + }, + "While expanding the reference 'generator_point' in:" + ], + "start_col": 14, + "start_line": 130 + } + }, + "3964": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 42, + "start_line": 135 + }, + "While expanding the reference 'generator_point' in:" + ], + "start_col": 14, + "start_line": 130 + } + }, + "3965": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 59, + "start_line": 135 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 48, + "start_line": 120 + } + }, + "3966": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 59, + "start_line": 135 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 48, + "start_line": 120 + } + }, + "3967": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 59, + "start_line": 135 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 48, + "start_line": 120 + } + }, + "3968": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 59, + "start_line": 135 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 48, + "start_line": 120 + } + }, + "3969": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 59, + "start_line": 135 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 48, + "start_line": 120 + } + }, + "3970": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 59, + "start_line": 135 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 48, + "start_line": 120 + } + }, + "3971": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 71, + "start_line": 135 + }, + "While expanding the reference 'u1' in:" + ], + "start_col": 14, + "start_line": 132 + } + }, + "3972": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 71, + "start_line": 135 + }, + "While expanding the reference 'u1' in:" + ], + "start_col": 14, + "start_line": 132 + } + }, + "3973": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 71, + "start_line": 135 + }, + "While expanding the reference 'u1' in:" + ], + "start_col": 14, + "start_line": 132 + } + }, + "3974": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 75, + "start_line": 135 + }, + "While expanding the reference 'u2' in:" + ], + "start_col": 14, + "start_line": 133 + } + }, + "3975": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 75, + "start_line": 135 + }, + "While expanding the reference 'u2' in:" + ], + "start_col": 14, + "start_line": 133 + } + }, + "3976": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 75, + "start_line": 135 + }, + "While expanding the reference 'u2' in:" + ], + "start_col": 14, + "start_line": 133 + } + }, + "3977": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 24, + "start_line": 135 + } + }, + "3979": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 30, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec_mulmuladd_secp256r1.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 25, + "start_line": 137 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 47 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 135 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 30 + } + }, + "3980": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 35, + "start_line": 137 + } + }, + "3981": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 35, + "start_line": 137 + } + }, + "3982": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 35, + "start_line": 137 + } + }, + "3983": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 56, + "start_line": 137 + } + }, + "3985": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 62, + "start_line": 137 + } + }, + "3987": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 68, + "start_line": 137 + } + }, + "3989": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 25, + "start_line": 137 + } + }, + "3991": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 139 + } + }, + "3992": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 139 + } + }, + "3993": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 9, + "start_line": 139 + } + }, + "3994": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 141, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 141 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 119 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 137 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 47 + } + }, + "3995": { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 141, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "start_col": 5, + "start_line": 141 + } + }, + "3996": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3998": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "4000": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4001": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "4003": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4004": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "4006": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "4007": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/9e5ba27f017ac85a82f4475872b7cb091c4954c0778059c55bdcd6c664450c68.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 26, + "start_line": 55 + }, + "While handling calldata argument 'request'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4008": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/9e5ba27f017ac85a82f4475872b7cb091c4954c0778059c55bdcd6c664450c68.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 26, + "start_line": 55 + }, + "While handling calldata argument 'request'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "4009": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/9e5ba27f017ac85a82f4475872b7cb091c4954c0778059c55bdcd6c664450c68.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 26, + "start_line": 55 + }, + "While handling calldata argument 'request'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "4011": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "4012": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "4014": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "4015": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "4016": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "4017": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4019": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "4020": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequest", + "src.signers.library.SignerRemoveRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4021": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4023": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "4025": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4026": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "4028": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4029": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "4031": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "4032": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/748d18cac905d6c9f6a503fa8dd13a6de55f993197e2ef20a4c0b60eec909330.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 18, + "start_line": 59 + }, + "While handling calldata argument 'signer_id'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4033": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/2f3ee0c40ff51e0a6b656d86a4b3cff3922cef35fa0c7ed06fd4a94c6824c7ac.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 59 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4034": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/2f3ee0c40ff51e0a6b656d86a4b3cff3922cef35fa0c7ed06fd4a94c6824c7ac.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 59 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "4035": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/2f3ee0c40ff51e0a6b656d86a4b3cff3922cef35fa0c7ed06fd4a94c6824c7ac.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 59 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "4036": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/arg_processor/2f3ee0c40ff51e0a6b656d86a4b3cff3922cef35fa0c7ed06fd4a94c6824c7ac.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 59 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 1, + "start_line": 6 + } + }, + "4037": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/2f3ee0c40ff51e0a6b656d86a4b3cff3922cef35fa0c7ed06fd4a94c6824c7ac.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 59 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 1, + "start_line": 7 + } + }, + "4038": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/2f3ee0c40ff51e0a6b656d86a4b3cff3922cef35fa0c7ed06fd4a94c6824c7ac.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 59 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 1, + "start_line": 8 + } + }, + "4039": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/arg_processor/2f3ee0c40ff51e0a6b656d86a4b3cff3922cef35fa0c7ed06fd4a94c6824c7ac.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 59 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 1, + "start_line": 9 + } + }, + "4040": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/2f3ee0c40ff51e0a6b656d86a4b3cff3922cef35fa0c7ed06fd4a94c6824c7ac.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 35, + "start_line": 59 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 22, + "start_line": 10 + } + }, + "4042": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "4043": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "4045": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "4046": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "4047": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "4048": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4050": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "4051": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerAdded", + "src.signers.library.SignerAdded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4052": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4054": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "4056": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4057": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "4059": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4060": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "4062": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "4063": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/748d18cac905d6c9f6a503fa8dd13a6de55f993197e2ef20a4c0b60eec909330.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 20, + "start_line": 63 + }, + "While handling calldata argument 'signer_id'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4064": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/748d18cac905d6c9f6a503fa8dd13a6de55f993197e2ef20a4c0b60eec909330.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 20, + "start_line": 63 + }, + "While handling calldata argument 'signer_id'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4066": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "4067": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "4069": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "4070": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "4071": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "4072": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4074": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "4075": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoved", + "src.signers.library.SignerRemoved.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4076": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4078": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "4080": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4081": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "4083": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4084": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "4086": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "4087": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/9e5ba27f017ac85a82f4475872b7cb091c4954c0778059c55bdcd6c664450c68.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 67 + }, + "While handling calldata argument 'request'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4088": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/9e5ba27f017ac85a82f4475872b7cb091c4954c0778059c55bdcd6c664450c68.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 67 + }, + "While handling calldata argument 'request'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "4089": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/9e5ba27f017ac85a82f4475872b7cb091c4954c0778059c55bdcd6c664450c68.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 35, + "start_line": 67 + }, + "While handling calldata argument 'request'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "4091": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "4092": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "4094": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "4095": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "4096": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "4097": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4099": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "4100": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.SignerRemoveRequestCancelled", + "src.signers.library.SignerRemoveRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4101": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "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 + } + }, + "4102": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "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": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "4103": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.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 + } + }, + "4105": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "4106": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "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": 35, + "start_line": 12 + } + }, + "4107": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "4108": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "4110": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "4111": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "4112": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "4114": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "4115": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "4116": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "4117": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "4118": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "4119": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "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": 25 + } + }, + "4120": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.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" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "4121": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "4123": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "4124": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "4125": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "4126": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "4128": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "4129": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "4130": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_public_key", + "src.signers.library.Account_public_key.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "4131": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "4132": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "4134": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "4135": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "4137": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/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": 43, + "start_line": 7 + } + }, + "4138": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "4139": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "4141": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/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 + } + }, + "4142": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "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 + } + }, + "4143": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "4144": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "4145": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/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": 35, + "start_line": 14 + } + }, + "4146": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "4147": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'idx' in:" + ], + "start_col": 80, + "start_line": 14 + } + }, + "4148": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "4150": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "4151": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "4152": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "4154": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "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": 352 + } + }, + "4155": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + } + }, + "4157": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "4159": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "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": 352 + } + }, + "4160": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 58, + "start_line": 20 + } + }, + "4162": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + } + }, + "4164": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 20 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "4165": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 58, + "start_line": 21 + } + }, + "4167": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + } + }, + "4169": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 22 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 21 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "4170": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 58, + "start_line": 22 + } + }, + "4172": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 22 + } + }, + "4174": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 23 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 22 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "4175": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 58, + "start_line": 23 + } + }, + "4177": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 23 + } + }, + "4179": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 23 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "4180": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 58, + "start_line": 24 + } + }, + "4182": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 24 + } + }, + "4184": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 31, + "start_line": 26 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 24 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "4185": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 32, + "start_line": 27 + }, + "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 + } + }, + "4186": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 35, + "start_line": 28 + }, + "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": 43, + "start_line": 7 + } + }, + "4187": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 45, + "start_line": 29 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "4188": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 45, + "start_line": 30 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "4189": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 45, + "start_line": 31 + }, + "While expanding the reference '__storage_var_temp2' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "4190": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 45, + "start_line": 32 + }, + "While expanding the reference '__storage_var_temp3' in:" + ], + "start_col": 14, + "start_line": 21 + } + }, + "4191": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 45, + "start_line": 33 + }, + "While expanding the reference '__storage_var_temp4' in:" + ], + "start_col": 14, + "start_line": 22 + } + }, + "4192": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 45, + "start_line": 34 + }, + "While expanding the reference '__storage_var_temp5' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "4193": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 45, + "start_line": 35 + }, + "While expanding the reference '__storage_var_temp6' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "4194": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "4195": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 42, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 42 + }, + "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": 39 + } + }, + "4196": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 42, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 39 + } + }, + "4197": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 40, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 35, + "start_line": 42 + }, + "While expanding the reference 'idx' in:" + ], + "start_col": 9, + "start_line": 40 + } + }, + "4198": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 42, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 42 + } + }, + "4200": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 43, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 39 + } + }, + "4201": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 42, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 43, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 31, + "start_line": 43 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 42 + } + }, + "4202": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 43, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 55, + "start_line": 43 + } + }, + "4203": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 43, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 43 + } + }, + "4205": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 44, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 31, + "start_line": 44 + } + }, + "4207": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 44, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 55, + "start_line": 44 + } + }, + "4208": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 44, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 44 + } + }, + "4210": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 45, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 31, + "start_line": 45 + } + }, + "4212": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 45, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 55, + "start_line": 45 + } + }, + "4213": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 45, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 45 + } + }, + "4215": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 46, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 31, + "start_line": 46 + } + }, + "4217": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 46, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 55, + "start_line": 46 + } + }, + "4218": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 46, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 46 + } + }, + "4220": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 47, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 31, + "start_line": 47 + } + }, + "4222": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 47, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 55, + "start_line": 47 + } + }, + "4223": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 47, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 47 + } + }, + "4225": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 48, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 31, + "start_line": 48 + } + }, + "4227": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 48, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 55, + "start_line": 48 + } + }, + "4228": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 48, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 48 + } + }, + "4230": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 49, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 31, + "start_line": 49 + } + }, + "4232": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 49, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 55, + "start_line": 49 + } + }, + "4233": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 49, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 49 + } + }, + "4235": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 42, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 50, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 42 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "4236": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 42, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 50, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 42 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "4237": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers", + "src.signers.library.Account_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 50, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 50 + } + }, + "4238": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/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 + } + }, + "4239": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "4240": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "4242": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "4243": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/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": 35, + "start_line": 12 + } + }, + "4244": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "4245": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "4247": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "4248": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "4249": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "4251": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/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": 352 + } + }, + "4252": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/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 + } + }, + "4253": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/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": 43, + "start_line": 7 + } + }, + "4254": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "4255": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "4256": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/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": 36, + "start_line": 23 + } + }, + "4257": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "4258": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "4260": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "4261": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "4262": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "4263": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "4265": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "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 + } + }, + "4266": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "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": 43, + "start_line": 7 + } + }, + "4267": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_max_index", + "src.signers.library.Account_signers_max_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "4268": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/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 + } + }, + "4269": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "4270": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "4272": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "4273": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/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": 35, + "start_line": 12 + } + }, + "4274": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "4275": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "4277": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "4278": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "4279": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "4281": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/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": 352 + } + }, + "4282": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/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 + } + }, + "4283": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/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": 43, + "start_line": 7 + } + }, + "4284": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "4285": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "4286": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/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": 36, + "start_line": 23 + } + }, + "4287": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "4288": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "4290": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "4291": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "4292": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "4293": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "4295": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "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 + } + }, + "4296": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "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": 43, + "start_line": 7 + } + }, + "4297": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_signers_num_hw_signers", + "src.signers.library.Account_signers_num_hw_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "4298": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/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 + } + }, + "4299": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "4300": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "4302": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "4303": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "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": 35, + "start_line": 12 + } + }, + "4304": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "4305": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "4307": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "4308": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "4309": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "4311": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "4312": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 58, + "start_line": 17 + } + }, + "4314": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + } + }, + "4316": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/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": 352 + } + }, + "4317": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 32, + "start_line": 20 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "4318": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 35, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "4319": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 45, + "start_line": 22 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "4320": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "4321": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "4322": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/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": 36, + "start_line": 27 + } + }, + "4323": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "4324": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + } + }, + "4326": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "4327": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 31, + "start_line": 31 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 30 + } + }, + "4328": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 55, + "start_line": 31 + } + }, + "4329": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "4331": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 31, + "start_line": 32 + } + }, + "4333": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 55, + "start_line": 32 + } + }, + "4334": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "4336": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "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 + } + }, + "4337": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "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": 43, + "start_line": 7 + } + }, + "4338": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Account_deferred_remove_signer", + "src.signers.library.Account_deferred_remove_signer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "4339": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 98 + } + }, + "4341": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 94, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 99 + }, + "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": 94 + } + }, + "4342": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 95 + } + }, + "4343": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 96, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 96 + } + }, + "4344": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 99 + } + }, + "4346": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 46, + "start_line": 100 + } + }, + "4348": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 14, + "start_line": 100 + }, + "While auto generating local variable for 'signers'." + ], + "start_col": 14, + "start_line": 100 + } + }, + "4349": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 101 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 106 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 99 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4350": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 101 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 107 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 99 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4351": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 101 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 108 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 99 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4352": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 48, + "start_line": 101 + } + }, + "4354": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 51, + "start_line": 101 + }, + "While expanding the reference 'max_id' in:" + ], + "start_col": 14, + "start_line": 99 + } + }, + "4355": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 59, + "start_line": 101 + }, + "While expanding the reference 'signers' in:" + ], + "start_col": 14, + "start_line": 100 + }, + "While auto generating local variable for 'signers'." + ], + "start_col": 14, + "start_line": 100 + } + }, + "4356": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 101 + } + }, + "4358": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 50, + "start_line": 102 + }, + "While expanding the reference 'signers' in:" + ], + "start_col": 14, + "start_line": 100 + }, + "While auto generating local variable for 'signers'." + ], + "start_col": 14, + "start_line": 100 + } + }, + "4359": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 102 + } + }, + "4360": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 112 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 108 + } + }, + "4361": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 46, + "start_line": 112 + }, + "While expanding the reference 'current_id' in:" + ], + "start_col": 9, + "start_line": 110 + } + }, + "4362": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 58, + "start_line": 112 + }, + "While expanding the reference 'max_id' in:" + ], + "start_col": 27, + "start_line": 110 + } + }, + "4363": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 112 + } + }, + "4365": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 113, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 113 + } + }, + "4367": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 114, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 106 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 106 + } + }, + "4368": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 114, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 107 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 107 + } + }, + "4369": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 114, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 108 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 112 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "4370": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 114, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 114 + } + }, + "4372": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 114, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 114 + } + }, + "4373": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 117 + }, + "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": 106 + } + }, + "4374": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 107 + } + }, + "4375": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 112 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "4376": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 50, + "start_line": 117 + }, + "While expanding the reference 'current_id' in:" + ], + "start_col": 9, + "start_line": 110 + } + }, + "4377": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 117 + } + }, + "4379": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 118, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 118 + } + }, + "4381": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 136, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 136 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 106 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 117 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4382": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 136, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 136 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 107 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 117 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4383": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 136, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 136 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 108 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 117 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4384": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 136, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 52, + "start_line": 136 + } + }, + "4386": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 136, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 68, + "start_line": 136 + }, + "While expanding the reference 'max_id' in:" + ], + "start_col": 27, + "start_line": 110 + } + }, + "4387": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 136, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 76, + "start_line": 136 + }, + "While expanding the reference 'signers' in:" + ], + "start_col": 41, + "start_line": 110 + } + }, + "4388": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 136, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 136 + } + }, + "4390": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 137 + } + }, + "4391": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 119 + } + }, + "4392": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 119 + } + }, + "4393": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 119 + } + }, + "4394": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 119 + } + }, + "4395": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 119 + } + }, + "4396": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 119 + } + }, + "4397": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 119 + } + }, + "4398": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 130, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 119 + } + }, + "4399": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 131 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 106 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 117 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4400": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 131 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 107 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 117 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4401": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 131 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 108 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 117 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4402": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 17, + "start_line": 132 + } + }, + "4404": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 132 + }, + "While expanding the reference 'max_id' in:" + ], + "start_col": 27, + "start_line": 110 + } + }, + "4405": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 41, + "start_line": 132 + } + }, + "4407": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 131 + } + }, + "4409": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 134 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 106 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 131 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 106 + } + }, + "4410": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 134 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 107 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 131 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 107 + } + }, + "4411": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 134 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 108 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 131 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 108 + } + }, + "4412": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 134 + } + }, + "4414": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._get_signers_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 134 + } + }, + "4415": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 146, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 146 + }, + "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": 142 + } + }, + "4416": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 146, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 146 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 143 + } + }, + "4417": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 146, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 146 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 144 + } + }, + "4418": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 145, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 146, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 45, + "start_line": 146 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 7, + "start_line": 145 + } + }, + "4419": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 146, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 146 + } + }, + "4421": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 148 + } + }, + "4422": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 158 + } + }, + "4424": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 159 + }, + "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": 152 + } + }, + "4425": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 159 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 153 + } + }, + "4426": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 159 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 154 + } + }, + "4427": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 159 + } + }, + "4429": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 160, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 160 + } + }, + "4431": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 161, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 161 + }, + "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": 36, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4432": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 161, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 161 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4433": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 159, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 161, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 161 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 159 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4434": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 161, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 50, + "start_line": 161 + } + }, + "4436": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 161, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 161 + } + }, + "4438": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 166, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 167, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 27, + "start_line": 167 + }, + "While expanding the reference 'x_uint256' in:" + ], + "start_col": 41, + "start_line": 166 + } + }, + "4439": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 166, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 167, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 27, + "start_line": 167 + }, + "While expanding the reference 'x_uint256' in:" + ], + "start_col": 63, + "start_line": 166 + } + }, + "4440": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 167, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 167 + } + }, + "4442": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 27, + "start_line": 169 + }, + "While expanding the reference 'y_uint256' in:" + ], + "start_col": 41, + "start_line": 168 + } + }, + "4443": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 27, + "start_line": 169 + }, + "While expanding the reference 'y_uint256' in:" + ], + "start_col": 63, + "start_line": 168 + } + }, + "4444": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 169 + } + }, + "4446": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 166, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 49, + "start_line": 170 + }, + "While expanding the reference 'x_uint256' in:" + ], + "start_col": 41, + "start_line": 166 + } + }, + "4447": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 166, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 49, + "start_line": 170 + }, + "While expanding the reference 'x_uint256' in:" + ], + "start_col": 63, + "start_line": 166 + } + }, + "4448": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 31, + "start_line": 170 + } + }, + "4450": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 171, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 31, + "start_line": 171 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 170 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + } + }, + "4451": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 171, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 49, + "start_line": 171 + }, + "While expanding the reference 'y_uint256' in:" + ], + "start_col": 41, + "start_line": 168 + } + }, + "4452": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 171, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 49, + "start_line": 171 + }, + "While expanding the reference 'y_uint256' in:" + ], + "start_col": 63, + "start_line": 168 + } + }, + "4453": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 171, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 31, + "start_line": 171 + } + }, + "4455": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 171, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 295, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 295 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 171 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + } + }, + "4456": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 172 + }, + "While expanding the reference 'x_bigint3' in:" + ], + "start_col": 18, + "start_line": 170 + } + }, + "4457": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 172 + }, + "While expanding the reference 'x_bigint3' in:" + ], + "start_col": 18, + "start_line": 170 + } + }, + "4458": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 172 + }, + "While expanding the reference 'x_bigint3' in:" + ], + "start_col": 18, + "start_line": 170 + } + }, + "4459": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 171, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 49, + "start_line": 172 + }, + "While expanding the reference 'y_bigint3' in:" + ], + "start_col": 18, + "start_line": 171 + } + }, + "4460": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 171, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 49, + "start_line": 172 + }, + "While expanding the reference 'y_bigint3' in:" + ], + "start_col": 18, + "start_line": 171 + } + }, + "4461": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 171, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 49, + "start_line": 172 + }, + "While expanding the reference 'y_bigint3' in:" + ], + "start_col": 18, + "start_line": 171 + } + }, + "4462": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 172 + } + }, + "4464": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 161, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 176, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 176 + }, + "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": 161 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "4465": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 161, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 176, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 176 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 161 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "4466": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 295, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/ec.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 176, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 176 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 172 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 295 + } + }, + "4467": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 176, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 176 + } + }, + "4469": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 176, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 178 + }, + "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": 24, + "start_line": 176 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4470": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 176, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 178 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 176 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4471": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 176, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 178 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 176 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4472": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 177, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 31, + "start_line": 178 + }, + "While expanding the reference 'avail_id' in:" + ], + "start_col": 24, + "start_line": 177 + } + }, + "4474": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 41, + "start_line": 178 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4475": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 41, + "start_line": 178 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4476": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 41, + "start_line": 178 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4477": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 41, + "start_line": 178 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4478": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 41, + "start_line": 178 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4479": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 41, + "start_line": 178 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4480": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 41, + "start_line": 178 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4481": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 178 + } + }, + "4483": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 177, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 41, + "start_line": 179 + }, + "While expanding the reference 'avail_id' in:" + ], + "start_col": 24, + "start_line": 177 + } + }, + "4485": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 179 + } + }, + "4487": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 181 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 179 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "4488": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 181 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 179 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "4489": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 177, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 26, + "start_line": 181 + }, + "While expanding the reference 'avail_id' in:" + ], + "start_col": 24, + "start_line": 177 + } + }, + "4491": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 181 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4492": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 181 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4493": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 181 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4494": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 181 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4495": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 181 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4496": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 181 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4497": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 155, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 181 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 7, + "start_line": 155 + } + }, + "4498": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 181 + } + }, + "4500": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 182, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 182 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 152 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 181 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "4501": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 182, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 182 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 153 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 179 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "4502": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerAdded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 182, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 182 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 181 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "4503": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 177, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 182, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 27, + "start_line": 182 + }, + "While expanding the reference 'avail_id' in:" + ], + "start_col": 24, + "start_line": 177 + } + }, + "4505": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 182, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 182 + } + }, + "4506": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 194 + } + }, + "4508": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 186, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 196, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 40, + "start_line": 196 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 186 + } + }, + "4509": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 196, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 40, + "start_line": 196 + } + }, + "4511": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 196, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 14, + "start_line": 196 + } + }, + "4512": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 196, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 40, + "start_line": 196 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "4513": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 187 + } + }, + "4514": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 188 + } + }, + "4515": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 198 + } + }, + "4516": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 198 + } + }, + "4517": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 197 + } + }, + "4519": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 205, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 21, + "start_line": 205 + } + }, + "4521": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 205, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 21, + "start_line": 205 + } + }, + "4522": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 206, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 17, + "start_line": 206 + } + }, + "4524": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 206, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 45, + "start_line": 205 + } + }, + "4526": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 206, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 71, + "start_line": 206 + } + }, + "4528": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 206, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 205 + } + }, + "4529": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 210 + }, + "While expanding the reference 'remove_index' in:" + ], + "start_col": 9, + "start_line": 190 + } + }, + "4530": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 44, + "start_line": 210 + } + }, + "4532": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 210 + } + }, + "4534": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 212 + }, + "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": 32, + "start_line": 197 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + } + }, + "4535": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 212 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 197 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "4536": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 212 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 32, + "start_line": 197 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "4537": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 53, + "start_line": 212 + }, + "While expanding the reference 'remove_index' in:" + ], + "start_col": 9, + "start_line": 190 + } + }, + "4538": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 212 + } + }, + "4540": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 215, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 215 + } + }, + "4542": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 231, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 223 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 231 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 32, + "start_line": 212 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4543": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 223 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 232 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 212 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4544": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 233, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 223 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 233 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 32, + "start_line": 212 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4545": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 23, + "start_line": 223 + }, + "While expanding the reference 'remove_index' in:" + ], + "start_col": 9, + "start_line": 190 + } + }, + "4546": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 223 + } + }, + "4548": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 191, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 44, + "start_line": 225 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 9, + "start_line": 191 + } + }, + "4549": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 191, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 44, + "start_line": 225 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 9, + "start_line": 191 + } + }, + "4550": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 191, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 44, + "start_line": 225 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 9, + "start_line": 191 + } + }, + "4551": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 191, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 44, + "start_line": 225 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 9, + "start_line": 191 + } + }, + "4552": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 191, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 44, + "start_line": 225 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 9, + "start_line": 191 + } + }, + "4553": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 191, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 44, + "start_line": 225 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 9, + "start_line": 191 + } + }, + "4554": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 191, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 44, + "start_line": 225 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 9, + "start_line": 191 + } + }, + "4555": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 225 + } + }, + "4557": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 227, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 227 + } + }, + "4558": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 234, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 236, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 236 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 7, + "start_line": 234 + } + }, + "4559": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 236, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 37, + "start_line": 236 + } + }, + "4561": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 236, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 236 + } + }, + "4563": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 231, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 240 + }, + "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": 231 + } + }, + "4564": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 232 + } + }, + "4565": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 233, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 233 + } + }, + "4566": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 234, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 53, + "start_line": 240 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 7, + "start_line": 234 + } + }, + "4567": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 240 + } + }, + "4569": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 252, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 241 + }, + "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": 32, + "start_line": 240 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4570": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 252, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 241 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 240 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4571": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 252, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 241 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 32, + "start_line": 240 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4572": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 234, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 242, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 242 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 7, + "start_line": 234 + } + }, + "4573": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 244, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 22, + "start_line": 244 + } + }, + "4575": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 245, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 22, + "start_line": 245 + } + }, + "4577": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 246, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 22, + "start_line": 246 + } + }, + "4579": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 247, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 22, + "start_line": 247 + } + }, + "4581": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 18, + "start_line": 248 + } + }, + "4583": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 249, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 249 + } + }, + "4585": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 250, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 250 + } + }, + "4587": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 252, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 241 + } + }, + "4589": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 256, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 23, + "start_line": 256 + } + }, + "4591": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 257, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 23, + "start_line": 257 + } + }, + "4593": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 259, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 254 + } + }, + "4595": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 261, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 261 + } + }, + "4597": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 261, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 261 + } + }, + "4599": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 259, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 262, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 262 + }, + "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": 254 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "4600": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 259, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 262, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 262 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 254 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "4601": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 259, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 262, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 262 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 254 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "4602": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 262, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 262 + } + }, + "4604": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 265 + } + }, + "4606": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 262, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 266 + }, + "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": 36, + "start_line": 262 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4607": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 262, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 266 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 262 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4608": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 262, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 266 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 262 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4609": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 50, + "start_line": 266 + } + }, + "4611": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 266 + } + }, + "4613": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 267, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 267 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 266 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "4614": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 268, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 268 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 266 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "4615": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 269, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 39, + "start_line": 269 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 266 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "4616": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 261, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 261 + } + }, + "4618": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 259, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 272, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 272 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 254 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "4619": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 259, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 273, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 273 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 254 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "4620": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 259, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 39, + "start_line": 274 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 254 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "4621": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 272, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 277 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 272 + } + }, + "4622": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 277 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 274 + } + }, + "4623": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 234, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 277 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 7, + "start_line": 234 + } + }, + "4624": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 277 + } + }, + "4626": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 231, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 278 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 231 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 277 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "4627": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 273, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 278 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 232 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 273 + } + }, + "4628": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoved/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 233, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 278 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 233 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 277 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "4629": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 278 + } + }, + "4630": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 285, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 287, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 287 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 7, + "start_line": 285 + } + }, + "4631": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 287, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 37, + "start_line": 287 + } + }, + "4633": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 287, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 287 + } + }, + "4635": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 282, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 291, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 291 + }, + "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": 282 + } + }, + "4636": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 283, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 291, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 291 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 283 + } + }, + "4637": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 284, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 291, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 291 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 284 + } + }, + "4638": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 285, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 291, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 53, + "start_line": 291 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 7, + "start_line": 285 + } + }, + "4639": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 291, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 291 + } + }, + "4641": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 293 + } + }, + "4643": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 291, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 25, + "start_line": 297 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 32, + "start_line": 291 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4644": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 25, + "start_line": 297 + } + }, + "4646": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 297 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "4647": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 291, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 291 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4648": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 291, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 32, + "start_line": 291 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4649": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 56, + "start_line": 298 + } + }, + "4650": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 79, + "start_line": 298 + } + }, + "4651": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 32, + "start_line": 298 + } + }, + "4653": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 301, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 301 + } + }, + "4655": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 306, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 306 + }, + "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": 32, + "start_line": 298 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + } + }, + "4656": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 306, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 306 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 298 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "4657": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 306, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 306 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 32, + "start_line": 298 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "4658": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 306, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 306 + } + }, + "4660": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 308, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 308 + } + }, + "4662": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 306, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 311, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 311 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 298 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 306 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4663": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 311, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 33, + "start_line": 311 + } + }, + "4665": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 285, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 313, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 313 + }, + "While expanding the reference 'account_etd' in:" + ], + "start_col": 20, + "start_line": 285 + } + }, + "4666": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 313, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 313 + } + }, + "4668": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 311, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 317, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 317 + }, + "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": 33, + "start_line": 311 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 298 + } + }, + "4669": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 306, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 317, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 317 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 306 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4670": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 306, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 317, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 317 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 306 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4671": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 315, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 316, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 317, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 46, + "start_line": 317 + }, + "While expanding the reference 'remove_req' in:" + ], + "start_col": 64, + "start_line": 316 + }, + "While expanding the reference 'expire_at' in:" + ], + "start_col": 25, + "start_line": 315 + } + }, + "4672": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 285, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 316, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 317, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 46, + "start_line": 317 + }, + "While expanding the reference 'remove_req' in:" + ], + "start_col": 85, + "start_line": 316 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 7, + "start_line": 285 + } + }, + "4673": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 317, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 317 + } + }, + "4675": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 317, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 318, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 318 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 317 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "4676": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 317, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 318, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 318 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 317 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "4677": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 315, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 316, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 318, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 34, + "start_line": 318 + }, + "While expanding the reference 'remove_req' in:" + ], + "start_col": 64, + "start_line": 316 + }, + "While expanding the reference 'expire_at' in:" + ], + "start_col": 25, + "start_line": 315 + } + }, + "4678": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 285, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 316, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 318, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 34, + "start_line": 318 + }, + "While expanding the reference 'remove_req' in:" + ], + "start_col": 85, + "start_line": 316 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 7, + "start_line": 285 + } + }, + "4679": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 318, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 318 + } + }, + "4681": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 318, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 282, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 319, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 282 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 318 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "4682": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 317, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 283, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 319, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 317 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "4683": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 318, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 284, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 319, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 318 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 55 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "4684": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 319, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 319 + } + }, + "4685": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 323, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 325, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 34, + "start_line": 325 + }, + "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": 323 + } + }, + "4686": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 323, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 325, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 34, + "start_line": 325 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 323 + } + }, + "4687": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 323, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 325, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 34, + "start_line": 325 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 323 + } + }, + "4688": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 325, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 34, + "start_line": 325 + } + }, + "4690": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 327, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 327 + } + }, + "4691": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 334, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 34, + "start_line": 334 + }, + "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": 331 + } + }, + "4692": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 334, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 34, + "start_line": 334 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 331 + } + }, + "4693": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 334, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 34, + "start_line": 334 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 331 + } + }, + "4694": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 334, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 34, + "start_line": 334 + } + }, + "4696": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 337, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 337 + } + }, + "4697": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 337, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 337 + } + }, + "4699": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 338, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 338 + } + }, + "4700": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 334, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 346, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 341 + }, + "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": 34, + "start_line": 334 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4701": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 334, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 346, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 341 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 334 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4702": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 334, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 346, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 341 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 334 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4703": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 343, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 23, + "start_line": 343 + } + }, + "4705": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 344, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 23, + "start_line": 344 + } + }, + "4707": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 346, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 341 + } + }, + "4709": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 346, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 347, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 347 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 341 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "4710": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 346, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 347, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 347 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 341 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "4711": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 334, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 347, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 43, + "start_line": 347 + }, + "While expanding the reference 'deferred_request' in:" + ], + "start_col": 14, + "start_line": 334 + } + }, + "4712": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 334, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 347, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 43, + "start_line": 347 + }, + "While expanding the reference 'deferred_request' in:" + ], + "start_col": 14, + "start_line": 334 + } + }, + "4713": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 347, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 347 + } + }, + "4715": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 347, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 349, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 349 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 331 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 347 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "4716": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 346, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 349, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 349 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 341 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "4717": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/SignerRemoveRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 67, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 347, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 349, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 349 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 331 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 347 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 67 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "4718": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 349, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 349 + } + }, + "4719": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 357, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 357 + } + }, + "4721": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 357, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 357 + } + }, + "4723": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 358 + }, + "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": 353 + } + }, + "4724": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "4725": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "4726": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 49, + "start_line": 358 + } + }, + "4728": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 358 + } + }, + "4730": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 363 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 358 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4731": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 363 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 28, + "start_line": 358 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4732": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 363 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 358 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4733": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 360, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 363 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 23, + "start_line": 360 + } + }, + "4735": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 363 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 361 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 358 + } + }, + "4736": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 363 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 361 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 358 + } + }, + "4737": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 363 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 361 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 358 + } + }, + "4738": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 363 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 361 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 358 + } + }, + "4739": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 363 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 361 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 358 + } + }, + "4740": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 363 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 361 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 358 + } + }, + "4741": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 363 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 361 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 358 + } + }, + "4742": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 363, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 363 + } + }, + "4743": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 365 + }, + "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": 353 + } + }, + "4744": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 365 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "4745": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 365 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "4746": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 49, + "start_line": 365 + } + }, + "4747": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 365 + } + }, + "4749": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 370 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 365 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4750": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 370 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 28, + "start_line": 365 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4751": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 370 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 365 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4752": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 367, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 370 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 23, + "start_line": 367 + } + }, + "4753": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 368, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 370 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 368 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 365 + } + }, + "4754": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 368, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 370 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 368 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 365 + } + }, + "4755": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 368, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 370 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 368 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 365 + } + }, + "4756": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 368, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 370 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 368 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 365 + } + }, + "4757": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 368, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 370 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 368 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 365 + } + }, + "4758": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 368, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 370 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 368 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 365 + } + }, + "4759": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 368, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 28, + "start_line": 370 + }, + "While expanding the reference 'indexed_signer' in:" + ], + "start_col": 24, + "start_line": 368 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 365 + } + }, + "4760": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.resolve_signer_from_sig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 370 + } + }, + "4761": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 375, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 379, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 379 + }, + "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": 375 + } + }, + "4762": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 376, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 379, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 379 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "4763": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 377, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 379, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 379 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 377 + } + }, + "4764": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 379, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 35, + "start_line": 379 + } + }, + "4766": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 380, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 50, + "start_line": 380 + } + }, + "4767": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 380, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 38, + "start_line": 380 + } + }, + "4769": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 379, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 41, + "start_line": 381 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 379 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4770": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 52, + "start_line": 381 + } + }, + "4771": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 378, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 81, + "start_line": 381 + }, + "While expanding the reference 'block_timestamp' in:" + ], + "start_col": 7, + "start_line": 378 + } + }, + "4772": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 41, + "start_line": 381 + } + }, + "4774": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 383, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 383 + } + }, + "4775": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 383, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 383 + } + }, + "4777": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 383, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 383 + } + }, + "4779": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 379, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 231, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 384, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 231 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 379 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4780": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 379, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 384, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 232 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 379 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4781": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 233, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 384, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 233 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 41, + "start_line": 381 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "4782": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 384, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 27, + "start_line": 384 + } + }, + "4783": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 384, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 384 + } + }, + "4785": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 385, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 385 + } + }, + "4786": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 379, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 375, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 388, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 388 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 375 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 379 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4787": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_deferred_remove_signer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 379, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 376, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 388, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 388 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 376 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 379 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4788": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 377, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 388, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 388 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 377 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 41, + "start_line": 381 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "4789": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 388, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 388 + } + }, + "4790": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 428, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 403 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 428 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 392 + } + }, + "4791": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 429, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 403 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 429 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 393 + } + }, + "4792": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 394, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 430, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 403 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 430 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 394 + } + }, + "4793": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 404, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 404 + } + }, + "4794": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 405, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 405 + } + }, + "4795": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 405, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 36, + "start_line": 405 + } + }, + "4796": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 397, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 406, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 406 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 9, + "start_line": 397 + } + }, + "4797": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 397, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 406, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 406 + }, + "While expanding the reference 'call_0_to' in:" + ], + "start_col": 31, + "start_line": 397 + } + }, + "4798": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 397, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 406, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 40, + "start_line": 406 + }, + "While expanding the reference 'call_0_sel' in:" + ], + "start_col": 48, + "start_line": 397 + } + }, + "4799": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 399, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 407, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 407 + }, + "While expanding the reference 'block_timestamp' in:" + ], + "start_col": 27, + "start_line": 399 + } + }, + "4800": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 400, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 408, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 408 + }, + "While expanding the reference 'in_multisig_mode' in:" + ], + "start_col": 9, + "start_line": 400 + } + }, + "4801": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 403 + } + }, + "4803": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 412, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 412 + } + }, + "4805": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 412, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 46, + "start_line": 412 + } + }, + "4806": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 412, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 412 + } + }, + "4808": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 412, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 412 + } + }, + "4810": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 412, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 412 + } + }, + "4812": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 428, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 392 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 403 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 428 + } + }, + "4813": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 429, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 393 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 403 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 429 + } + }, + "4814": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 412, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 394, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 394 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 412 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "4815": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 395, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 395, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 395 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 395 + } + }, + "4816": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 413 + } + }, + "4818": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 413 + } + }, + "4819": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 428, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 526, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 420, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 418 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 526 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 403 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 428 + } + }, + "4820": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 429, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 420, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 418 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 527 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 403 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 429 + } + }, + "4821": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 412, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 420, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 418 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 528 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 412 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "4822": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 395, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 420, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 418 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 395 + } + }, + "4823": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 17, + "start_line": 419 + } + }, + "4824": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 419, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 43, + "start_line": 419 + } + }, + "4825": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 419, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 66, + "start_line": 419 + } + }, + "4826": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 420, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 418 + } + }, + "4828": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 421, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 421 + } + }, + "4830": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 526, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 420, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 424, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 424 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 392 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 418 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 526 + } + }, + "4831": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 420, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 424, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 424 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 393 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 418 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 527 + } + }, + "4832": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 420, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 394, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 424, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 424 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 394 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 418 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 528 + } + }, + "4833": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 420, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 395, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 424, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 424 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 395 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 30, + "start_line": 418 + }, + "While trying to update the implicit return value 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + } + }, + "4834": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 424, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 23, + "start_line": 424 + } + }, + "4836": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.signers_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 424, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 424 + } + }, + "4837": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 438, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 438 + } + }, + "4839": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 428, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 40, + "start_line": 440 + }, + "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": 428 + } + }, + "4840": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 429, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 40, + "start_line": 440 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 429 + } + }, + "4841": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 430, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 40, + "start_line": 440 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 430 + } + }, + "4842": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 40, + "start_line": 440 + } + }, + "4844": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 441, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 25, + "start_line": 441 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 40, + "start_line": 440 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4845": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 441, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 25, + "start_line": 441 + } + }, + "4847": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 441, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 442 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 441 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "4848": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 442 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 440 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4849": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 442 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 40, + "start_line": 440 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4850": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 56, + "start_line": 442 + }, + "While expanding the reference 'signature_len' in:" + ], + "start_col": 9, + "start_line": 433 + } + }, + "4851": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 71, + "start_line": 442 + }, + "While expanding the reference 'signature' in:" + ], + "start_col": 30, + "start_line": 433 + } + }, + "4852": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 442 + } + }, + "4854": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 446, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 39, + "start_line": 446 + } + }, + "4856": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 446, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 39, + "start_line": 446 + } + }, + "4857": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 446, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 446 + } + }, + "4858": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 446, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 446 + } + }, + "4860": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 428, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 447 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 428 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 442 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + } + }, + "4861": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 429, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 447 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 429 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 442 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "4862": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 430, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 447 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 430 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 442 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "4863": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 447 + } + }, + "4864": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 450, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 450 + } + }, + "4866": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 450, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 450 + } + }, + "4868": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 428, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 453, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 453 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 428 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 442 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + } + }, + "4869": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 429, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 453, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 453 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 429 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 442 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "4870": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 430, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 453, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 453 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 430 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 442 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "4871": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 453, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 453 + } + }, + "4872": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 462, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 462 + } + }, + "4874": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 467, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 467 + } + }, + "4875": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 468, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 468 + } + }, + "4877": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 471, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 471 + } + }, + "4879": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 428, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 474, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 474 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 428 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 442 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + } + }, + "4880": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 429, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 474, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 474 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 429 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 442 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "4881": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 442, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 430, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 474, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 474 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 430 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 442 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "4882": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._authorize_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 474, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 474 + } + }, + "4883": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 481, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 10, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 495, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 493 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 29, + "start_line": 10 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 481 + } + }, + "4884": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 484, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 21, + "start_line": 494 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 9, + "start_line": 484 + } + }, + "4885": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 483, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 38, + "start_line": 494 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 9, + "start_line": 483 + } + }, + "4886": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 490, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 62, + "start_line": 494 + }, + "While expanding the reference 'sig_r' in:" + ], + "start_col": 21, + "start_line": 490 + } + }, + "4887": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 491, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 81, + "start_line": 494 + }, + "While expanding the reference 'sig_s' in:" + ], + "start_col": 21, + "start_line": 491 + } + }, + "4888": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 495, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 493 + } + }, + "4890": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 478, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 478, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 497 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 478 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 478 + } + }, + "4891": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 497 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 479 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 479 + } + }, + "4892": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 480, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 480, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 497 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 480 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 480 + } + }, + "4893": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 10, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 495, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 481, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 497 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 481 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 493 + }, + "While trying to update the implicit return value 'ecdsa_ptr' in:" + ], + "start_col": 29, + "start_line": 10 + } + }, + "4894": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 26, + "start_line": 497 + } + }, + "4896": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_stark_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 497 + } + }, + "4897": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 503, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 19, + "start_line": 510 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 503 + } + }, + "4898": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 49, + "start_line": 510 + } + }, + "4899": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 71, + "start_line": 510 + } + }, + "4900": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 19, + "start_line": 510 + } + }, + "4902": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 511, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 19, + "start_line": 511 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 510 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + } + }, + "4903": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 511, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 49, + "start_line": 511 + } + }, + "4904": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 511, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 71, + "start_line": 511 + } + }, + "4905": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 511, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 19, + "start_line": 511 + } + }, + "4907": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 511, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 514, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 514 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 511 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + } + }, + "4908": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 513, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 514, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 23, + "start_line": 514 + }, + "While expanding the reference 'r_uint256' in:" + ], + "start_col": 37, + "start_line": 513 + } + }, + "4909": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 513, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 514, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 23, + "start_line": 514 + }, + "While expanding the reference 'r_uint256' in:" + ], + "start_col": 56, + "start_line": 513 + } + }, + "4910": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 514, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 514 + } + }, + "4912": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 23, + "start_line": 516 + }, + "While expanding the reference 's_uint256' in:" + ], + "start_col": 37, + "start_line": 515 + } + }, + "4913": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 23, + "start_line": 516 + }, + "While expanding the reference 's_uint256' in:" + ], + "start_col": 56, + "start_line": 515 + } + }, + "4914": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 516 + } + }, + "4916": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 513, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 517, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 45, + "start_line": 517 + }, + "While expanding the reference 'r_uint256' in:" + ], + "start_col": 37, + "start_line": 513 + } + }, + "4917": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 513, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 517, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 45, + "start_line": 517 + }, + "While expanding the reference 'r_uint256' in:" + ], + "start_col": 56, + "start_line": 513 + } + }, + "4918": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 517, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 27, + "start_line": 517 + } + }, + "4920": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 517, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 518, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 27, + "start_line": 518 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 517 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + } + }, + "4921": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 518, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 45, + "start_line": 518 + }, + "While expanding the reference 's_uint256' in:" + ], + "start_col": 37, + "start_line": 515 + } + }, + "4922": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 518, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 45, + "start_line": 518 + }, + "While expanding the reference 's_uint256' in:" + ], + "start_col": 56, + "start_line": 515 + } + }, + "4923": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 518, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 27, + "start_line": 518 + } + }, + "4925": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 518, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 519, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 37, + "start_line": 519 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 124 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 518 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + } + }, + "4926": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 506, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 519, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 48, + "start_line": 519 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 9, + "start_line": 506 + } + }, + "4927": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 519, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 37, + "start_line": 519 + } + }, + "4929": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 519, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/cairo_secp/bigint.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 520, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 520 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 119 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 37, + "start_line": 519 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 124 + } + }, + "4930": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 519, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 520, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 60, + "start_line": 520 + }, + "While expanding the reference 'hash_low' in:" + ], + "start_col": 25, + "start_line": 519 + } + }, + "4931": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 519, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 520, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 75, + "start_line": 520 + }, + "While expanding the reference 'hash_high' in:" + ], + "start_col": 14, + "start_line": 519 + } + }, + "4932": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 520, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 520 + } + }, + "4934": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 517, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 50, + "start_line": 521 + }, + "While expanding the reference 'r_bigint3' in:" + ], + "start_col": 14, + "start_line": 517 + } + }, + "4935": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 517, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 50, + "start_line": 521 + }, + "While expanding the reference 'r_bigint3' in:" + ], + "start_col": 14, + "start_line": 517 + } + }, + "4936": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 517, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 50, + "start_line": 521 + }, + "While expanding the reference 'r_bigint3' in:" + ], + "start_col": 14, + "start_line": 517 + } + }, + "4937": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 518, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 61, + "start_line": 521 + }, + "While expanding the reference 's_bigint3' in:" + ], + "start_col": 14, + "start_line": 518 + } + }, + "4938": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 518, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 61, + "start_line": 521 + }, + "While expanding the reference 's_bigint3' in:" + ], + "start_col": 14, + "start_line": 518 + } + }, + "4939": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 518, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 61, + "start_line": 521 + }, + "While expanding the reference 's_bigint3' in:" + ], + "start_col": 14, + "start_line": 518 + } + }, + "4940": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 82, + "start_line": 521 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 14, + "start_line": 510 + } + }, + "4941": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 82, + "start_line": 521 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 14, + "start_line": 510 + } + }, + "4942": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 82, + "start_line": 521 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 14, + "start_line": 510 + } + }, + "4943": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 511, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 87, + "start_line": 521 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 14, + "start_line": 511 + } + }, + "4944": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 511, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 87, + "start_line": 521 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 14, + "start_line": 511 + } + }, + "4945": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 511, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 87, + "start_line": 521 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 14, + "start_line": 511 + } + }, + "4946": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 521 + } + }, + "4948": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 501, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 501, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 522, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 522 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 501 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 501 + } + }, + "4949": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 502, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 502, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 522, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 522 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 502 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 502 + } + }, + "4950": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/secp256r1/src/secp256r1/signature.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 521, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 503, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 522, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 522 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 503 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 521 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 119 + } + }, + "4951": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 522, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 26, + "start_line": 522 + } + }, + "4953": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers._is_valid_secp256r1_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 522, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 522 + } + }, + "4954": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 534, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 534 + } + }, + "4956": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 534, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 534 + } + }, + "4958": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 526, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 536, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 536 + }, + "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": 526 + } + }, + "4959": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 536, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 536 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 527 + } + }, + "4960": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 536, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 536 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 528 + } + }, + "4961": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 536, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 51, + "start_line": 536 + } + }, + "4963": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 536, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 536 + } + }, + "4965": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 536, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 478, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 537 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 478 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 536 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4966": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 536, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 537 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 479 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 536 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4967": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 536, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 480, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 537 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 480 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 536 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4968": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 481, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 537 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 481 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + } + }, + "4969": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 39, + "start_line": 537 + } + }, + "4970": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 531, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 58, + "start_line": 537 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 9, + "start_line": 531 + } + }, + "4971": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 532, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 64, + "start_line": 537 + }, + "While expanding the reference 'signature_len' in:" + ], + "start_col": 9, + "start_line": 532 + } + }, + "4972": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 532, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 79, + "start_line": 537 + }, + "While expanding the reference 'signature' in:" + ], + "start_col": 30, + "start_line": 532 + } + }, + "4973": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 537 + } + }, + "4975": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 478, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 526, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 538, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 538 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 526 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 537 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 478 + } + }, + "4976": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 538, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 538 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 527 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 537 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 479 + } + }, + "4977": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 480, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 538, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 538 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 528 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 537 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 480 + } + }, + "4978": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 481, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 537, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 538, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 538 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 13, + "start_line": 537 + }, + "While trying to update the implicit return value 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 481 + } + }, + "4979": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 538, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 538 + } + }, + "4981": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 538, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 538 + } + }, + "4982": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 526, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 541 + }, + "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": 526 + } + }, + "4983": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 541 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 527 + } + }, + "4984": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 541 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 528 + } + }, + "4985": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 45, + "start_line": 541 + } + }, + "4986": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 24, + "start_line": 541 + } + }, + "4988": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 543, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 543 + } + }, + "4990": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 543, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 543 + } + }, + "4992": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 546, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 17, + "start_line": 546 + } + }, + "4994": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 478, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 549 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 478 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 541 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4995": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 549 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 479 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 541 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4996": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 480, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 549 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 480 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 541 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4997": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 481, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 549 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 481 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + } + }, + "4998": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 39, + "start_line": 549 + } + }, + "4999": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 531, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 56, + "start_line": 549 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 9, + "start_line": 531 + } + }, + "5000": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 62, + "start_line": 549 + } + }, + "5002": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 81, + "start_line": 549 + } + }, + "5004": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 549 + } + }, + "5006": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 478, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 526, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 550, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 550 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 526 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 549 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 478 + } + }, + "5007": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 550, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 550 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 527 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 549 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 479 + } + }, + "5008": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 480, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 550, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 550 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 528 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 549 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 480 + } + }, + "5009": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 481, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 549, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 550, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 550 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 13, + "start_line": 549 + }, + "While trying to update the implicit return value 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 481 + } + }, + "5010": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 550, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 550 + } + }, + "5012": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 550, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 550 + } + }, + "5013": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 553, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 553 + } + }, + "5015": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 553, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 553 + } + }, + "5017": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 556, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 17, + "start_line": 556 + } + }, + "5019": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 501, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 559 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 501 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 541 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "5020": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 502, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 559 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 502 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 541 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "5021": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 503, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 559 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 503 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 541 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "5022": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 43, + "start_line": 559 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 14, + "start_line": 541 + } + }, + "5023": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 43, + "start_line": 559 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 14, + "start_line": 541 + } + }, + "5024": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 43, + "start_line": 559 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 14, + "start_line": 541 + } + }, + "5025": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 43, + "start_line": 559 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 14, + "start_line": 541 + } + }, + "5026": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 43, + "start_line": 559 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 14, + "start_line": 541 + } + }, + "5027": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 43, + "start_line": 559 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 14, + "start_line": 541 + } + }, + "5028": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 43, + "start_line": 559 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 14, + "start_line": 541 + } + }, + "5029": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 531, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 51, + "start_line": 559 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 9, + "start_line": 531 + } + }, + "5030": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 57, + "start_line": 559 + } + }, + "5032": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 76, + "start_line": 559 + } + }, + "5034": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 559 + } + }, + "5036": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 501, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 526, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 560, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 560 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 526 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 559 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 501 + } + }, + "5037": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 502, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 560, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 560 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 527 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 559 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 502 + } + }, + "5038": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 503, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 559, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 560, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 560 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 528 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 559 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 503 + } + }, + "5039": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 560, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 560 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + } + }, + "5040": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 560, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 30, + "start_line": 560 + } + }, + "5042": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 560, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 560 + } + }, + "5043": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 565, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 29, + "start_line": 565 + } + }, + "5045": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 565, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 13, + "start_line": 565 + } + }, + "5047": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 526, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 568, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 568 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 526 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 541 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "5048": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 568, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 568 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 527 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 541 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "5049": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 541, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 568, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 568 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 528 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 541 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "5050": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 568, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 568 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + } + }, + "5051": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 568, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 26, + "start_line": 568 + } + }, + "5053": { + "accessible_scopes": [ + "src.signers.library", + "src.signers.library.Signers", + "src.signers.library.Signers.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 568, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "start_col": 9, + "start_line": 568 + } + }, + "5054": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 22, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 24, + "start_line": 26 + }, + "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": 22 + } + }, + "5055": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 23, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 24, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 23 + } + }, + "5056": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 24, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 24, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 24 + } + }, + "5057": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 24, + "start_line": 26 + } + }, + "5059": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 32 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 26 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "5060": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 33 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "5061": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_max_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 34 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "5062": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 33, + "start_line": 27 + } + }, + "5064": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 27, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 36, + "start_line": 27 + }, + "While expanding the reference 'max_id' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "5065": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "5067": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 28, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 17, + "start_line": 28 + } + }, + "5069": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations.migrate_000_000_009" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 28, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "5070": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 36, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "5072": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 12, + "start_line": 38 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 34 + } + }, + "5073": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 35, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 23, + "start_line": 38 + }, + "While expanding the reference 'current_id' in:" + ], + "start_col": 7, + "start_line": 35 + } + }, + "5074": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 35, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 35, + "start_line": 38 + }, + "While expanding the reference 'max_id' in:" + ], + "start_col": 25, + "start_line": 35 + } + }, + "5075": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 12, + "start_line": 38 + } + }, + "5077": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 9, + "start_line": 38 + } + }, + "5079": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 32 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 32 + } + }, + "5080": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 33 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 33 + } + }, + "5081": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 34 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 38 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "5082": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 39 + } + }, + "5083": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 29, + "start_line": 42 + }, + "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": 32 + } + }, + "5084": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 29, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 33 + } + }, + "5085": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 29, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 38 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "5086": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 35, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 50, + "start_line": 42 + }, + "While expanding the reference 'current_id' in:" + ], + "start_col": 7, + "start_line": 35 + } + }, + "5087": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 29, + "start_line": 42 + } + }, + "5089": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 43 + } + }, + "5091": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 9, + "start_line": 43 + } + }, + "5093": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 44 + }, + "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": 29, + "start_line": 42 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "5094": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 44 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 42 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "5095": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 44 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 42 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "5096": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 35, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 17, + "start_line": 45 + }, + "While expanding the reference 'current_id' in:" + ], + "start_col": 7, + "start_line": 35 + } + }, + "5097": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 47, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 30, + "start_line": 47 + } + }, + "5098": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 30, + "start_line": 48 + } + }, + "5099": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 30, + "start_line": 49 + } + }, + "5100": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 30, + "start_line": 50 + } + }, + "5101": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 26, + "start_line": 51 + } + }, + "5103": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 32, + "start_line": 52 + } + }, + "5104": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 32, + "start_line": 53 + } + }, + "5105": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 55, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 44 + } + }, + "5107": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 37, + "start_line": 56 + } + }, + "5109": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 35, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 52, + "start_line": 56 + }, + "While expanding the reference 'max_id' in:" + ], + "start_col": 25, + "start_line": 35 + } + }, + "5110": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 56, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 56 + } + }, + "5112": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 57, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 57 + } + }, + "5113": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 32 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 42 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "5114": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 33, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 33 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 42 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "5115": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 34 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 42 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "5116": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 37, + "start_line": 59 + } + }, + "5118": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 35, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 52, + "start_line": 59 + }, + "While expanding the reference 'max_id' in:" + ], + "start_col": 25, + "start_line": 35 + } + }, + "5119": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 59 + } + }, + "5121": { + "accessible_scopes": [ + "src.migrations.library", + "src.migrations.library.Migrations", + "src.migrations.library.Migrations._migrate_type_3_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "start_col": 13, + "start_line": 60 + } + }, + "5122": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5124": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "5126": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5127": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "5129": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5130": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "5132": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "5133": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3baa70f41d32115ce07d3735705ccd7d327af99af4825960d2e992aa4969dfc8.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 63 + }, + "While handling calldata argument 'public_key'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5134": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3baa70f41d32115ce07d3735705ccd7d327af99af4825960d2e992aa4969dfc8.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 25, + "start_line": 63 + }, + "While handling calldata argument 'public_key'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "5136": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "5137": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "5139": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "5140": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "5141": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "5142": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5144": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5145": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.AccountInitialized", + "src.account.library.AccountInitialized.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "5146": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/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 + } + }, + "5147": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "5148": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "5150": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "5151": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/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": 35, + "start_line": 12 + } + }, + "5152": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "5153": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "5155": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "5156": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "5157": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "5159": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/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": 352 + } + }, + "5160": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/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 + } + }, + "5161": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/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": 43, + "start_line": 7 + } + }, + "5162": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "5163": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "5164": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/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": 36, + "start_line": 23 + } + }, + "5165": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "5166": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "5168": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "5169": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "5170": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "5171": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "5173": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "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 + } + }, + "5174": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "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": 43, + "start_line": 7 + } + }, + "5175": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_execution_time_delay_sec", + "src.account.library.Account_execution_time_delay_sec.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "5176": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/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 + } + }, + "5177": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "5178": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "5180": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "5181": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/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": 35, + "start_line": 12 + } + }, + "5182": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "5183": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "5185": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "5186": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "5187": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "5189": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/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": 352 + } + }, + "5190": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/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 + } + }, + "5191": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/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": 43, + "start_line": 7 + } + }, + "5192": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "5193": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "5194": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/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": 36, + "start_line": 23 + } + }, + "5195": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "5196": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "5198": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "5199": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "5200": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "5201": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "5203": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "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 + } + }, + "5204": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "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": 43, + "start_line": 7 + } + }, + "5205": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account_storage_migration_version", + "src.account.library.Account_storage_migration_version.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "5206": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 82 + } + }, + "5208": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 93 + }, + "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": 9, + "start_line": 78 + } + }, + "5209": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 93 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 79 + } + }, + "5210": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 93 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 80 + } + }, + "5211": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 31, + "start_line": 93 + } + }, + "5213": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 84, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 93 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 22, + "start_line": 84 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 7, + "start_line": 81 + } + }, + "5214": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 93 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 22, + "start_line": 85 + } + }, + "5216": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 86, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 93 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 22, + "start_line": 86 + } + }, + "5218": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 93 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 22, + "start_line": 87 + } + }, + "5220": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 88, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 93 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 18, + "start_line": 88 + } + }, + "5222": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 89, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 93 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 24, + "start_line": 89 + } + }, + "5224": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 93 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 24, + "start_line": 90 + } + }, + "5226": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 93, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 93 + } + }, + "5228": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 94, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 41, + "start_line": 94 + } + }, + "5230": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 94, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 94 + } + }, + "5232": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 48, + "start_line": 95 + } + }, + "5234": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 95 + } + }, + "5236": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "5237": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "5238": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 97 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "5239": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 97 + } + }, + "5241": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 97 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 25, + "start_line": 97 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "5242": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 99 + } + }, + "5243": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 36, + "start_line": 99 + } + }, + "5244": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 57, + "start_line": 98 + } + }, + "5246": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 39, + "start_line": 103 + } + }, + "5247": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 27, + "start_line": 103 + } + }, + "5249": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 104, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 104 + } + }, + "5251": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 104, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 104 + } + }, + "5253": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 152 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 97 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 25, + "start_line": 97 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "5254": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 153 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "5255": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "5256": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 32, + "start_line": 105 + }, + "While expanding the reference 'additional_signer' in:" + ], + "start_col": 23, + "start_line": 98 + } + }, + "5257": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 32, + "start_line": 105 + }, + "While expanding the reference 'additional_signer' in:" + ], + "start_col": 23, + "start_line": 98 + } + }, + "5258": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 32, + "start_line": 105 + }, + "While expanding the reference 'additional_signer' in:" + ], + "start_col": 23, + "start_line": 98 + } + }, + "5259": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 32, + "start_line": 105 + }, + "While expanding the reference 'additional_signer' in:" + ], + "start_col": 23, + "start_line": 98 + } + }, + "5260": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 32, + "start_line": 105 + }, + "While expanding the reference 'additional_signer' in:" + ], + "start_col": 23, + "start_line": 98 + } + }, + "5261": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 32, + "start_line": 105 + }, + "While expanding the reference 'additional_signer' in:" + ], + "start_col": 23, + "start_line": 98 + } + }, + "5262": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 32, + "start_line": 105 + }, + "While expanding the reference 'additional_signer' in:" + ], + "start_col": 23, + "start_line": 98 + } + }, + "5263": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 105 + } + }, + "5265": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 35, + "start_line": 106 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 105 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 152 + } + }, + "5266": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 36, + "start_line": 107 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 105 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 153 + } + }, + "5267": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 39, + "start_line": 108 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 105 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 154 + } + }, + "5268": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 104, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 104 + } + }, + "5270": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 110, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 35, + "start_line": 110 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 97 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 25, + "start_line": 97 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "5271": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 111, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 36, + "start_line": 111 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "5272": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 39, + "start_line": 112 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 9, + "start_line": 95 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "5273": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 115, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 49, + "start_line": 115 + } + }, + "5275": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 115, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 115 + } + }, + "5277": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 115, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 115 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "5278": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 115, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 115 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "5279": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 33, + "start_line": 116 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 7, + "start_line": 81 + } + }, + "5280": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 116 + } + }, + "5282": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 78 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 116 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "5283": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 115, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 79 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 115 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "5284": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AccountInitialized/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 80 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 116 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 63 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5285": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 117 + } + }, + "5286": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 121, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 101 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 121 + } + }, + "5287": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 101 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 122 + } + }, + "5288": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 101 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "5289": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 125 + } + }, + "5291": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 126, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 126 + } + }, + "5293": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 129, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 29, + "start_line": 129 + } + }, + "5295": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 129, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 129 + } + }, + "5296": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 52, + "start_line": 130 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 125 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 101 + } + }, + "5297": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 24, + "start_line": 131 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 7, + "start_line": 124 + } + }, + "5298": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 132, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 31, + "start_line": 132 + } + }, + "5300": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 27, + "start_line": 133 + } + }, + "5302": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 126, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 134, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 134 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 14, + "start_line": 126 + } + }, + "5303": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 52, + "start_line": 130 + } + }, + "5305": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 33, + "start_line": 139 + } + }, + "5307": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 139 + } + }, + "5308": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 135, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 142 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 52, + "start_line": 130 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + } + }, + "5309": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 142 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 125 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 101 + } + }, + "5310": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 142 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 125 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 101 + } + }, + "5311": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 35, + "start_line": 142 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 7, + "start_line": 124 + } + }, + "5312": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 142 + } + }, + "5314": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 145, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 33, + "start_line": 145 + } + }, + "5316": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 145, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 145 + } + }, + "5317": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 51, + "start_line": 146 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 142 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 60 + } + }, + "5318": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 24, + "start_line": 147 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 7, + "start_line": 124 + } + }, + "5319": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 31, + "start_line": 148 + } + }, + "5321": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 27, + "start_line": 149 + } + }, + "5323": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 150, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 150 + } + }, + "5325": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 51, + "start_line": 146 + } + }, + "5327": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 121, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 152 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 121 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 51, + "start_line": 146 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + } + }, + "5328": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 152 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 122 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 142 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 60 + } + }, + "5329": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 152 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 123 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 142 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 60 + } + }, + "5330": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 152 + } + }, + "5331": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 160, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 160 + } + }, + "5333": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 156, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 162 + }, + "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": 9, + "start_line": 156 + } + }, + "5334": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 157, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 162 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 157 + } + }, + "5335": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 162 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 158 + } + }, + "5336": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 49, + "start_line": 162 + } + }, + "5338": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 162 + } + }, + "5340": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 17, + "start_line": 169 + } + }, + "5342": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 169 + } + }, + "5344": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 22, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 29, + "start_line": 170 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 22 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 162 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "5345": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 23, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 29, + "start_line": 170 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 162 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "5346": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 24, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 29, + "start_line": 170 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 162 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "5347": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 29, + "start_line": 170 + } + }, + "5349": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 171, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 17, + "start_line": 171 + } + }, + "5351": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 22, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 156, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 175, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 175 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 156 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 170 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 22 + } + }, + "5352": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 23, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 157, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 175, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 175 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 157 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 170 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 23 + } + }, + "5353": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 24, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/migrations/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 175, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 175 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 158 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 170 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 24 + } + }, + "5354": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 175, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 175 + } + }, + "5355": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 183 + }, + "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": 179 + } + }, + "5356": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 180 + } + }, + "5357": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 181 + } + }, + "5358": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 183, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 183 + } + }, + "5360": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 185, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 185 + } + }, + "5361": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 193 + } + }, + "5363": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 193, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 193 + } + }, + "5365": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 194, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 194 + } + }, + "5366": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 18, + "start_line": 199 + } + }, + "5368": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 199 + } + }, + "5370": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 199 + } + }, + "5372": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 18, + "start_line": 199 + } + }, + "5373": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 18, + "start_line": 200 + } + }, + "5375": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 200 + } + }, + "5376": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 200 + } + }, + "5377": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 200 + } + }, + "5379": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 18, + "start_line": 200 + } + }, + "5380": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 17, + "start_line": 199 + } + }, + "5381": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 201, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 18, + "start_line": 201 + } + }, + "5383": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 201, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 201 + } + }, + "5384": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 201, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 201 + } + }, + "5385": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 201, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 201 + } + }, + "5387": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 201, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 18, + "start_line": 201 + } + }, + "5388": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 201, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 17, + "start_line": 199 + } + }, + "5389": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 201, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 17, + "start_line": 199 + } + }, + "5391": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 199 + } + }, + "5393": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 203, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 203 + } + }, + "5395": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 203, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 50, + "start_line": 203 + } + }, + "5396": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 203, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 50, + "start_line": 203 + } + }, + "5398": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 203, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 203 + } + }, + "5400": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 203, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 203 + } + }, + "5401": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 204 + } + }, + "5403": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 204 + } + }, + "5404": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 204 + } + }, + "5406": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 204 + } + }, + "5408": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 204 + } + }, + "5409": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 204, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 33, + "start_line": 203 + } + }, + "5410": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 206, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 206 + } + }, + "5412": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 206, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 50, + "start_line": 206 + } + }, + "5413": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 100, + "end_line": 206, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 50, + "start_line": 206 + } + }, + "5415": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 206, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 206 + } + }, + "5417": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 206, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 206 + } + }, + "5418": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 207 + } + }, + "5420": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 207 + } + }, + "5421": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 207 + } + }, + "5423": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 207 + } + }, + "5425": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 207 + } + }, + "5426": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 33, + "start_line": 206 + } + }, + "5427": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 209, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 209 + } + }, + "5429": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 209, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 54, + "start_line": 209 + } + }, + "5430": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 113, + "end_line": 209, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 54, + "start_line": 209 + } + }, + "5432": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 114, + "end_line": 209, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 42, + "start_line": 209 + } + }, + "5434": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 114, + "end_line": 209, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 209 + } + }, + "5435": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 210 + } + }, + "5437": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 210 + } + }, + "5438": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 210 + } + }, + "5440": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 210 + } + }, + "5442": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 210 + } + }, + "5443": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 37, + "start_line": 209 + } + }, + "5444": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 40, + "start_line": 212 + } + }, + "5446": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 56, + "start_line": 212 + } + }, + "5447": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 123, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 56, + "start_line": 212 + } + }, + "5449": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 124, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 44, + "start_line": 212 + } + }, + "5451": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 124, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 40, + "start_line": 212 + } + }, + "5452": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 213, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 213 + } + }, + "5454": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 213, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 213 + } + }, + "5455": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 108, + "end_line": 213, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 213 + } + }, + "5457": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 109, + "end_line": 213, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 213 + } + }, + "5459": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 109, + "end_line": 213, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 213 + } + }, + "5460": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 213, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 39, + "start_line": 212 + } + }, + "5461": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 215, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 37, + "start_line": 215 + } + }, + "5463": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 215, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 53, + "start_line": 215 + } + }, + "5464": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 103, + "end_line": 215, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 53, + "start_line": 215 + } + }, + "5466": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 104, + "end_line": 215, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 41, + "start_line": 215 + } + }, + "5468": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 104, + "end_line": 215, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 37, + "start_line": 215 + } + }, + "5469": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 216, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 216 + } + }, + "5471": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 216, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 216 + } + }, + "5472": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 105, + "end_line": 216, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 216 + } + }, + "5474": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 106, + "end_line": 216, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 216 + } + }, + "5476": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 106, + "end_line": 216, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 216 + } + }, + "5477": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 216, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 36, + "start_line": 215 + } + }, + "5478": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 37, + "start_line": 218 + } + }, + "5480": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 53, + "start_line": 218 + } + }, + "5481": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 120, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 53, + "start_line": 218 + } + }, + "5483": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 121, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 41, + "start_line": 218 + } + }, + "5485": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 121, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 37, + "start_line": 218 + } + }, + "5486": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 219, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 219 + } + }, + "5488": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 219, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 219 + } + }, + "5489": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 219, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 219 + } + }, + "5491": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 219, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 219 + } + }, + "5493": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 219, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 219 + } + }, + "5494": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 219, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 36, + "start_line": 218 + } + }, + "5495": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 24, + "start_line": 223 + } + }, + "5496": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 24, + "start_line": 223 + } + }, + "5497": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 24, + "start_line": 223 + } + }, + "5498": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 24, + "start_line": 223 + } + }, + "5499": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 88, + "start_line": 223 + } + }, + "5501": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 223, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 17, + "start_line": 223 + } + }, + "5502": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 199, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 199 + } + }, + "5504": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 47, + "start_line": 225 + }, + "While expanding the reference 'self' in:" + ], + "start_col": 9, + "start_line": 189 + } + }, + "5505": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 53, + "start_line": 225 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 21, + "start_line": 189 + } + }, + "5506": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 189, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 69, + "start_line": 225 + }, + "While expanding the reference 'call_array' in:" + ], + "start_col": 43, + "start_line": 189 + } + }, + "5507": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 225, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 17, + "start_line": 225 + } + }, + "5509": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.assert_multicall_valid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 229 + } + }, + "5510": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._assert_multicall_valid_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 235, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 235 + } + }, + "5512": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._assert_multicall_valid_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 236, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 236 + } + }, + "5513": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._assert_multicall_valid_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 238 + } + }, + "5514": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._assert_multicall_valid_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 233, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 44, + "start_line": 238 + }, + "While expanding the reference 'self' in:" + ], + "start_col": 9, + "start_line": 233 + } + }, + "5515": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._assert_multicall_valid_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 238 + } + }, + "5517": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._assert_multicall_valid_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 233, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 240 + }, + "While expanding the reference 'self' in:" + ], + "start_col": 9, + "start_line": 233 + } + }, + "5518": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._assert_multicall_valid_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 19, + "start_line": 240 + } + }, + "5520": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._assert_multicall_valid_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 39, + "start_line": 240 + } + }, + "5522": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._assert_multicall_valid_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 241, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 239 + } + }, + "5524": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._assert_multicall_valid_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 242, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 242 + } + }, + "5525": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 250, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 250 + } + }, + "5527": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 250, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 250 + } + }, + "5529": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 246, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 246, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 251, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 251 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 246 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 246 + } + }, + "5530": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 247, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 247, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 251, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 251 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 247 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 247 + } + }, + "5531": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 251, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 251 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 248 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 248 + } + }, + "5532": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 251, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 29, + "start_line": 251 + } + }, + "5534": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 251, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 251 + } + }, + "5535": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 253, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 253 + } + }, + "5537": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 253, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 253 + } + }, + "5539": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 246, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 246, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 254, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 254 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 246 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 246 + } + }, + "5540": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 247, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 247, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 254, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 254 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 247 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 247 + } + }, + "5541": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 254, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 254 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 248 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 248 + } + }, + "5542": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 254, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 29, + "start_line": 254 + } + }, + "5544": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 254, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 254 + } + }, + "5545": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 256, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 256 + } + }, + "5547": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 256, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 256 + } + }, + "5549": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 246, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 246, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 257, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 257 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 246 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 246 + } + }, + "5550": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 247, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 247, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 257, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 257 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 247 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 247 + } + }, + "5551": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 257, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 257 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 248 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 248 + } + }, + "5552": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 257, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 29, + "start_line": 257 + } + }, + "5554": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 257, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 257 + } + }, + "5555": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 246, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 246, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 260, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 246 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 246 + } + }, + "5556": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 247, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 247, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 260, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 247 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 247 + } + }, + "5557": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 260, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 248 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 248 + } + }, + "5558": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 260, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 260 + } + }, + "5560": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 260, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 260 + } + }, + "5561": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 264, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 268, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 268 + }, + "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": 264 + } + }, + "5562": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 268, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 268 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 265 + } + }, + "5563": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 268, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 268 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 266 + } + }, + "5564": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 268, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 268 + } + }, + "5566": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 269, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 269 + } + }, + "5568": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 269, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 269 + } + }, + "5570": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 271, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 17, + "start_line": 271 + } + }, + "5572": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 268, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 264, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 274 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 268 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "5573": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 268, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 274 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 265 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 268 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "5574": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 268, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 274 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 266 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 268 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "5575": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 274 + } + }, + "5576": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 268, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 279, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 279 + }, + "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": 34, + "start_line": 268 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "5577": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 268, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 279, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 268 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "5578": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 268, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_storage_migration_version/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 279, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 268 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "5579": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 279, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 49, + "start_line": 279 + } + }, + "5581": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 279, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 279 + } + }, + "5583": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 280, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 48, + "start_line": 280 + } + }, + "5585": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 280, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 280 + } + }, + "5587": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 281, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 28, + "start_line": 281 + } + }, + "5589": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 282, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 282 + } + }, + "5591": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 282, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 282 + } + }, + "5593": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 281, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 293 + }, + "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": 28, + "start_line": 281 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "5594": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 281, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 28, + "start_line": 281 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "5595": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 281, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 281 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "5596": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 35, + "start_line": 293 + } + }, + "5598": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 281, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 285, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 293 + }, + "While expanding the reference 'signer_0' in:" + ], + "start_col": 26, + "start_line": 285 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 14, + "start_line": 281 + } + }, + "5599": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 286, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 293 + }, + "While expanding the reference 'signer_0' in:" + ], + "start_col": 26, + "start_line": 286 + } + }, + "5601": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 287, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 293 + }, + "While expanding the reference 'signer_0' in:" + ], + "start_col": 26, + "start_line": 287 + } + }, + "5603": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 288, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 293 + }, + "While expanding the reference 'signer_0' in:" + ], + "start_col": 26, + "start_line": 288 + } + }, + "5605": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 289, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 293 + }, + "While expanding the reference 'signer_0' in:" + ], + "start_col": 22, + "start_line": 289 + } + }, + "5607": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 290, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 293 + }, + "While expanding the reference 'signer_0' in:" + ], + "start_col": 28, + "start_line": 290 + } + }, + "5609": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 291, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 293 + }, + "While expanding the reference 'signer_0' in:" + ], + "start_col": 28, + "start_line": 291 + } + }, + "5611": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 293, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 293 + } + }, + "5613": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 294, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 38, + "start_line": 294 + } + }, + "5615": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 294, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 294 + } + }, + "5617": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 295, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 295 + } + }, + "5618": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 281, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 264, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 281 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "5619": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 281, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 265 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 28, + "start_line": 281 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "5620": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 281, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 266 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 281 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "5621": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._migrate_storage_if_needed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 298 + } + }, + "5622": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 312, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 312 + } + }, + "5624": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 315, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 315 + } + }, + "5625": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 317, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 317 + } + }, + "5626": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 318, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 318 + } + }, + "5627": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 319, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 319 + } + }, + "5628": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 320, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 320 + } + }, + "5629": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 321, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 321 + } + }, + "5630": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 322, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 28, + "start_line": 322 + } + }, + "5631": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 323, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 28, + "start_line": 323 + } + }, + "5632": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 325, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 314 + } + }, + "5633": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 329, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 342, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 342 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 329 + } + }, + "5634": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 342, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 342 + } + }, + "5636": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 344, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 344 + } + }, + "5637": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 344, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 36, + "start_line": 344 + } + }, + "5638": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 345, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 59, + "start_line": 343 + } + }, + "5640": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 330, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 347, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 350, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 350 + }, + "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": 24, + "start_line": 347 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 330 + } + }, + "5641": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 350, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 36, + "start_line": 350 + } + }, + "5643": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 350, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 39, + "start_line": 350 + } + }, + "5644": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 350, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 350 + } + }, + "5646": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 343, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 351, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 46, + "start_line": 351 + }, + "While expanding the reference 'actual_impl' in:" + ], + "start_col": 14, + "start_line": 343 + } + }, + "5647": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 351, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 351 + } + }, + "5649": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 46, + "start_line": 352 + } + }, + "5650": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 352 + } + }, + "5652": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 46, + "start_line": 353 + } + }, + "5653": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 353 + } + }, + "5655": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 46, + "start_line": 354 + } + }, + "5656": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 354 + } + }, + "5658": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 46, + "start_line": 355 + } + }, + "5659": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 355 + } + }, + "5661": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 356, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 46, + "start_line": 356 + } + }, + "5662": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 356, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 356 + } + }, + "5664": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 357, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 46, + "start_line": 357 + } + }, + "5665": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 357, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 357 + } + }, + "5667": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 46, + "start_line": 358 + } + }, + "5668": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 358 + } + }, + "5670": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 359, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 46, + "start_line": 359 + } + }, + "5672": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 359, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 359 + } + }, + "5674": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 364, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 42, + "start_line": 364 + } + }, + "5675": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 364, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 64, + "start_line": 364 + } + }, + "5676": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 364, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 42, + "start_line": 364 + } + }, + "5677": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 364, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 64, + "start_line": 364 + } + }, + "5678": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 364, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 37, + "start_line": 364 + } + }, + "5680": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 364, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 37, + "start_line": 364 + } + }, + "5682": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 342, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 478, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 365 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 478 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 342 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "5683": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 359, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 365 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 479 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 28, + "start_line": 361 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 30, + "start_line": 359 + }, + "While trying to update the implicit return value 'hash_ptr' in:" + ], + "start_col": 12, + "start_line": 13 + } + }, + "5684": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 480, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 365 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 480 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 331 + } + }, + "5685": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 332, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 481, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 365 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 481 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 332 + } + }, + "5686": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 43, + "start_line": 365 + } + }, + "5687": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 359, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 56, + "start_line": 365 + }, + "While expanding the reference 'hash_res' in:" + ], + "start_col": 18, + "start_line": 359 + } + }, + "5688": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 66, + "start_line": 365 + } + }, + "5690": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 364, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 69, + "start_line": 365 + }, + "While expanding the reference 'actual_sig' in:" + ], + "start_col": 17, + "start_line": 364 + } + }, + "5691": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 365 + } + }, + "5693": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 478, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 329, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 367, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 367 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 329 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 365 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 478 + } + }, + "5694": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 330, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 367, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 367 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 330 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 365 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 479 + } + }, + "5695": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 480, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 367, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 367 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 331 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 365 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 480 + } + }, + "5696": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 481, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 365, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 332, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 367, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 367 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 332 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 365 + }, + "While trying to update the implicit return value 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 481 + } + }, + "5697": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.validate_deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 367, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 367 + } + }, + "5698": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 376, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 42, + "start_line": 381 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "5699": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 381 + } + }, + "5701": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 382, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 382 + } + }, + "5703": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 388, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 17, + "start_line": 388 + } + }, + "5704": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 376, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 388, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 51, + "start_line": 388 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "5705": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 376, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 388, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 67, + "start_line": 388 + }, + "While expanding the reference 'call_array' in:" + ], + "start_col": 31, + "start_line": 376 + } + }, + "5706": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 389, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 387 + } + }, + "5708": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 371, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 371, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 391, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 371 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 371 + } + }, + "5709": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 372, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 372, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 391, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 372 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 372 + } + }, + "5710": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 391, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 373 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 373 + } + }, + "5711": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 374, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 374, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 391, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 374 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 374 + } + }, + "5712": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 391, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 23, + "start_line": 391 + } + }, + "5714": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.account_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 391, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 391 + } + }, + "5715": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 403, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 403 + } + }, + "5717": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 405, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 405 + } + }, + "5719": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 405, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 405, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 14, + "start_line": 405 + }, + "While auto generating local variable for 'calls'." + ], + "start_col": 14, + "start_line": 405 + } + }, + "5720": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 396, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 443, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 406, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 406 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 443 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 396 + } + }, + "5721": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 400, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 406, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 406 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 9, + "start_line": 400 + } + }, + "5722": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 400, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 406, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 50, + "start_line": 406 + }, + "While expanding the reference 'call_array' in:" + ], + "start_col": 31, + "start_line": 400 + } + }, + "5723": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 401, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 406, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 62, + "start_line": 406 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 29, + "start_line": 401 + } + }, + "5724": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 405, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 405, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 406, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 72, + "start_line": 406 + }, + "While expanding the reference 'calls' in:" + ], + "start_col": 14, + "start_line": 405 + }, + "While auto generating local variable for 'calls'." + ], + "start_col": 14, + "start_line": 405 + } + }, + "5725": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 406, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 406 + } + }, + "5727": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 33, + "start_line": 410 + } + }, + "5729": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 14, + "start_line": 410 + }, + "While auto generating local variable for 'response'." + ], + "start_col": 14, + "start_line": 410 + } + }, + "5730": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 443, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 406, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 416, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 411, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 411 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 416 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 406 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 443 + } + }, + "5731": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 400, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 407, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 411, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 44, + "start_line": 411 + }, + "While expanding the reference 'calls_len' in:" + ], + "start_col": 25, + "start_line": 407 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 9, + "start_line": 400 + } + }, + "5732": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 405, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 405, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 411, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 55, + "start_line": 411 + }, + "While expanding the reference 'calls' in:" + ], + "start_col": 14, + "start_line": 405 + }, + "While auto generating local variable for 'calls'." + ], + "start_col": 14, + "start_line": 405 + } + }, + "5733": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 411, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 62, + "start_line": 411 + }, + "While expanding the reference 'response' in:" + ], + "start_col": 14, + "start_line": 410 + }, + "While auto generating local variable for 'response'." + ], + "start_col": 14, + "start_line": 410 + } + }, + "5734": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 411, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 411 + } + }, + "5736": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 416, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 411, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 396, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 396 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 411 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 416 + } + }, + "5737": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 397, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 397, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 397 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 397 + } + }, + "5738": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 398, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 398, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 398 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 398 + } + }, + "5739": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 411, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 413 + }, + "While expanding the reference 'response_len' in:" + ], + "start_col": 14, + "start_line": 411 + } + }, + "5740": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 53, + "start_line": 413 + }, + "While expanding the reference 'response' in:" + ], + "start_col": 14, + "start_line": 410 + }, + "While auto generating local variable for 'response'." + ], + "start_col": 14, + "start_line": 410 + } + }, + "5741": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 413, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 413 + } + }, + "5742": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 419, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 419 + } + }, + "5744": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 422, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 422 + } + }, + "5746": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 416, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 416, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 423, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 423 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 416 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 416 + } + }, + "5747": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 423, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 34, + "start_line": 423 + } + }, + "5749": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 423, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 423 + } + }, + "5750": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 416, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 19, + "start_line": 428 + }, + "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": 416 + } + }, + "5751": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 429, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 429 + } + }, + "5752": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 430, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 31, + "start_line": 430 + } + }, + "5753": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 431, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 27, + "start_line": 431 + } + }, + "5754": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 432, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 432 + } + }, + "5755": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 19, + "start_line": 428 + } + }, + "5757": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 428, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 428, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 428 + }, + "While auto generating local variable for 'res'." + ], + "start_col": 13, + "start_line": 428 + } + }, + "5758": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 428, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 428, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 428 + }, + "While auto generating local variable for 'res'." + ], + "start_col": 13, + "start_line": 428 + } + }, + "5759": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 19, + "start_line": 428 + }, + "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": 428 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "5760": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 417, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 16, + "start_line": 435 + }, + "While expanding the reference 'response' in:" + ], + "start_col": 40, + "start_line": 417 + } + }, + "5761": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 435 + } + }, + "5762": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 39, + "start_line": 435 + } + }, + "5763": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 435 + } + }, + "5765": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 416, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 439, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 437 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 416 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 428 + }, + "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": 428 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "5766": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 438, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 438 + } + }, + "5768": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 438, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 28, + "start_line": 438 + } + }, + "5770": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 438, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 47, + "start_line": 438 + } + }, + "5771": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 439, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 437 + } + }, + "5773": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 416, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 439, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 416, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 440 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 416 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 437 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 416 + } + }, + "5774": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 30, + "start_line": 440 + } + }, + "5775": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._execute_list" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 440 + } + }, + "5776": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 448, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 448 + } + }, + "5778": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 443, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 443, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 449, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 449 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 443 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 443 + } + }, + "5779": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 449, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 449 + } + }, + "5780": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 454, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 16, + "start_line": 454 + } + }, + "5781": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 458, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 453 + } + }, + "5782": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 455, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 455 + } + }, + "5783": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 458, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 453 + } + }, + "5784": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 456, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 456 + } + }, + "5785": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 458, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 453 + } + }, + "5786": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 457, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 33, + "start_line": 457 + } + }, + "5787": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 457, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 457 + } + }, + "5788": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 458, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 453 + } + }, + "5789": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 443, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 443, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 462, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 460 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 443 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 443 + } + }, + "5790": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 461, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 461 + } + }, + "5792": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 461, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 33, + "start_line": 461 + } + }, + "5794": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 445, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 461, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 69, + "start_line": 461 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 9, + "start_line": 445 + } + }, + "5795": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 461, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 79, + "start_line": 461 + } + }, + "5797": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 462, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 460 + } + }, + "5799": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account._from_call_array_to_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 463, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 463 + } + }, + "5800": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_init" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 18, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "5802": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_init" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 19, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 23, + "start_line": 19 + } + }, + "5804": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_init" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 21, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 21 + } + }, + "5806": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_init" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 22, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "5808": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_init" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 19, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 20, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 23, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 29, + "start_line": 23 + }, + "While expanding the reference 'hash_state' in:" + ], + "start_col": 11, + "start_line": 20 + }, + "While expanding the reference '__fp__' in:" + ], + "start_col": 10, + "start_line": 19 + } + }, + "5809": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_init" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "5810": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 32, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "5812": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 29, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 35, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 18, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 24, + "start_line": 78 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 18, + "start_line": 29 + } + }, + "5813": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 18, + "start_line": 34 + }, + "While expanding the reference 'data_ptr' in:" + ], + "start_col": 33, + "start_line": 30 + } + }, + "5814": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 30, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 40, + "start_line": 34 + }, + "While expanding the reference 'data_length' in:" + ], + "start_col": 50, + "start_line": 30 + } + }, + "5815": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 58, + "start_line": 34 + } + }, + "5816": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 35, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 18, + "start_line": 33 + } + }, + "5818": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 36, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 23, + "start_line": 36 + } + }, + "5820": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 38 + } + }, + "5821": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 37, + "start_line": 39 + } + }, + "5822": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 39 + } + }, + "5823": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 35, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 29, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 40, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 40 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 18, + "start_line": 29 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 18, + "start_line": 33 + }, + "While trying to update the implicit return value 'hash_ptr' in:" + ], + "start_col": 24, + "start_line": 78 + } + }, + "5824": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 36, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 37, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 40, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 33, + "start_line": 40 + }, + "While expanding the reference 'new_hash_state' in:" + ], + "start_col": 11, + "start_line": 37 + }, + "While expanding the reference '__fp__' in:" + ], + "start_col": 10, + "start_line": 36 + } + }, + "5825": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 40, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 40 + } + }, + "5826": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 48, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "5828": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 18, + "start_line": 49 + }, + "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": 25, + "start_line": 45 + } + }, + "5829": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 26, + "start_line": 49 + } + }, + "5830": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 57, + "start_line": 49 + }, + "While expanding the reference 'item' in:" + ], + "start_col": 77, + "start_line": 45 + } + }, + "5831": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 18, + "start_line": 49 + } + }, + "5833": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 23, + "start_line": 50 + } + }, + "5835": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 52, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 52 + } + }, + "5836": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 37, + "start_line": 53 + } + }, + "5837": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 53, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 53 + } + }, + "5839": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 49, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 25, + "start_line": 45 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 18, + "start_line": 49 + }, + "While trying to update the implicit return value 'hash_ptr' in:" + ], + "start_col": 12, + "start_line": 13 + } + }, + "5840": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 50, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 33, + "start_line": 54 + }, + "While expanding the reference 'new_hash_state' in:" + ], + "start_col": 11, + "start_line": 51 + }, + "While expanding the reference '__fp__' in:" + ], + "start_col": 10, + "start_line": 50 + } + }, + "5841": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_single" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 54, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "5842": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_with_hashchain" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 59, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 24, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 17, + "start_line": 124 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 33, + "start_line": 59 + } + }, + "5843": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_with_hashchain" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 40, + "start_line": 63 + }, + "While expanding the reference 'data_ptr' in:" + ], + "start_col": 33, + "start_line": 60 + } + }, + "5844": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_with_hashchain" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 57, + "start_line": 63 + }, + "While expanding the reference 'data_length' in:" + ], + "start_col": 50, + "start_line": 60 + } + }, + "5845": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_with_hashchain" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 24, + "start_line": 63 + } + }, + "5847": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_with_hashchain" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 66, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 12, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 25, + "start_line": 45 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 24, + "start_line": 63 + }, + "While trying to update the implicit return value 'hash_ptr' in:" + ], + "start_col": 17, + "start_line": 124 + } + }, + "5848": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_with_hashchain" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 66, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 46, + "start_line": 66 + }, + "While expanding the reference 'hash_state_ptr' in:" + ], + "start_col": 5, + "start_line": 60 + } + }, + "5849": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_with_hashchain" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 66, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 67, + "start_line": 66 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 10, + "start_line": 63 + } + }, + "5850": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_with_hashchain" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 66, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 12, + "start_line": 66 + } + }, + "5852": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_with_hashchain" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 66, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 66 + } + }, + "5853": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 18, + "start_line": 71 + }, + "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": 70 + } + }, + "5854": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 26, + "start_line": 71 + } + }, + "5855": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 57, + "start_line": 71 + } + }, + "5856": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 71, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 18, + "start_line": 71 + } + }, + "5858": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 72 + } + }, + "5859": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 81, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 81 + } + }, + "5861": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 9, + "start_line": 82 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 24, + "start_line": 78 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 24, + "start_line": 78 + } + }, + "5862": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 78, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 22, + "start_line": 82 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 84, + "start_line": 78 + } + }, + "5863": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 82, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 9, + "start_line": 82 + } + }, + "5864": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 86, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 86 + } + }, + "5866": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 34, + "start_line": 87 + } + }, + "5868": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 87 + } + }, + "5869": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 96, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 96 + } + }, + "5870": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 97, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 97 + } + }, + "5871": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 98, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 98 + } + }, + "5872": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 36, + "start_line": 103 + } + }, + "5873": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 106, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 106 + } + }, + "5874": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 37, + "start_line": 107 + } + }, + "5875": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 107 + } + }, + "5876": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 111, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "5878": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 112 + } + }, + "5880": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 113, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "5881": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 116 + } + }, + "5883": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_update_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 121, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 121 + } + }, + "5884": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_felts" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 40, + "start_line": 125 + } + }, + "5886": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_felts" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 29, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 28, + "start_line": 126 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 18, + "start_line": 29 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 17, + "start_line": 124 + } + }, + "5887": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_felts" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 125, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 24, + "start_line": 127 + }, + "While expanding the reference 'hash_state_ptr' in:" + ], + "start_col": 10, + "start_line": 125 + } + }, + "5888": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_felts" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 49, + "start_line": 127 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 41, + "start_line": 124 + } + }, + "5889": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_felts" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 124, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 67, + "start_line": 127 + }, + "While expanding the reference 'length' in:" + ], + "start_col": 54, + "start_line": 124 + } + }, + "5890": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_felts" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 28, + "start_line": 126 + } + }, + "5892": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_felts" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 129, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 12, + "start_line": 129 + } + }, + "5894": { + "accessible_scopes": [ + "starkware.cairo.common.hash_state", + "starkware.cairo.common.hash_state.hash_felts" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 129, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "start_col": 5, + "start_line": 129 + } + }, + "5895": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5897": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "5899": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5900": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "5902": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5903": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "5905": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "5906": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/08a4723f90e78bf4498023f1ff5d4f8db6ed6f08e4ba0d26d1e67d7eef1be5e4.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 29, + "start_line": 68 + }, + "While handling calldata argument 'request'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5907": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/08a4723f90e78bf4498023f1ff5d4f8db6ed6f08e4ba0d26d1e67d7eef1be5e4.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 29, + "start_line": 68 + }, + "While handling calldata argument 'request'" + ], + "start_col": 22, + "start_line": 4 + } + }, + "5909": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "5910": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "5912": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "5913": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "5914": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "5915": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5917": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5918": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequest", + "src.multisig.library.MultisigDisableRequest.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "5919": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5921": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "5923": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5924": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "5926": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5927": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "5929": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "5930": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/08a4723f90e78bf4498023f1ff5d4f8db6ed6f08e4ba0d26d1e67d7eef1be5e4.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 72 + }, + "While handling calldata argument 'request'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5931": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/08a4723f90e78bf4498023f1ff5d4f8db6ed6f08e4ba0d26d1e67d7eef1be5e4.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 38, + "start_line": 72 + }, + "While handling calldata argument 'request'" + ], + "start_col": 22, + "start_line": 4 + } + }, + "5933": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "5934": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "5936": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "5937": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "5938": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "5939": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5941": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5942": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisableRequestCancelled", + "src.multisig.library.MultisigDisableRequestCancelled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "5943": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5945": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "5947": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5948": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "5950": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5951": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "5953": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "5954": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/0d4f06a16f5b584968bff2bede6b79820335ee1e8777660edff0ae20878e009d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 18, + "start_line": 76 + }, + "While handling calldata argument 'num_signers'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5955": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/0d4f06a16f5b584968bff2bede6b79820335ee1e8777660edff0ae20878e009d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 18, + "start_line": 76 + }, + "While handling calldata argument 'num_signers'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "5957": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "5958": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "5960": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "5961": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "5962": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "5963": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5965": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5966": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigSet", + "src.multisig.library.MultisigSet.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "5967": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5969": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "5971": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5972": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "5974": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5975": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "5977": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "5978": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "5979": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "5981": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "5982": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "5983": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "5984": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5986": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5987": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.MultisigDisabled", + "src.multisig.library.MultisigDisabled.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "5988": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/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 + } + }, + "5989": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "5990": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "5992": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "5993": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/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": 35, + "start_line": 12 + } + }, + "5994": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "5995": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "5997": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "5998": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "5999": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "6001": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/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": 352 + } + }, + "6002": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/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 + } + }, + "6003": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/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": 43, + "start_line": 7 + } + }, + "6004": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "6005": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "6006": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/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": 36, + "start_line": 23 + } + }, + "6007": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "6008": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "6010": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "6011": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "6012": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "6013": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "6015": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "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 + } + }, + "6016": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "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": 43, + "start_line": 7 + } + }, + "6017": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_num_signers", + "src.multisig.library.Multisig_num_signers.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "6018": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/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 + } + }, + "6019": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "6020": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "6022": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "6023": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "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": 35, + "start_line": 12 + } + }, + "6024": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "6025": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "6027": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "6028": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "6029": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "6031": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "6032": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 58, + "start_line": 17 + } + }, + "6034": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + } + }, + "6036": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "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": 352 + } + }, + "6037": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + } + }, + "6039": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "6041": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "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": 352 + } + }, + "6042": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + } + }, + "6044": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "6046": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "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": 352 + } + }, + "6047": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 58, + "start_line": 20 + } + }, + "6049": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + } + }, + "6051": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 31, + "start_line": 22 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 20 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "6052": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 32, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "6053": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 35, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "6054": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "6055": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 45, + "start_line": 26 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "6056": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 45, + "start_line": 27 + }, + "While expanding the reference '__storage_var_temp2' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "6057": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 45, + "start_line": 28 + }, + "While expanding the reference '__storage_var_temp3' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "6058": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 45, + "start_line": 29 + }, + "While expanding the reference '__storage_var_temp4' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "6059": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "6060": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 30, + "start_line": 36 + }, + "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": 33 + } + }, + "6061": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 30, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 33 + } + }, + "6062": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 30, + "start_line": 36 + } + }, + "6064": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 33 + } + }, + "6065": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 31, + "start_line": 37 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 36 + } + }, + "6066": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 55, + "start_line": 37 + } + }, + "6067": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 37 + } + }, + "6069": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 31, + "start_line": 38 + } + }, + "6071": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 55, + "start_line": 38 + } + }, + "6072": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + } + }, + "6074": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 31, + "start_line": 39 + } + }, + "6076": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 55, + "start_line": 39 + } + }, + "6077": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 39 + } + }, + "6079": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 40, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 31, + "start_line": 40 + } + }, + "6081": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 40, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 55, + "start_line": 40 + } + }, + "6082": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 40, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 40 + } + }, + "6084": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 41, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 31, + "start_line": 41 + } + }, + "6086": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 41, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 55, + "start_line": 41 + } + }, + "6087": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 41, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 41 + } + }, + "6089": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 42, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 36 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "6090": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 42, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 36 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "6091": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_pending_transaction", + "src.multisig.library.Multisig_pending_transaction.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 42, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/impl.cairo" + }, + "start_col": 9, + "start_line": 42 + } + }, + "6092": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/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 + } + }, + "6093": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "6094": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "6096": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "6097": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "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": 35, + "start_line": 12 + } + }, + "6098": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "6099": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "6101": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "6102": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "6103": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "6105": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "6106": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "6107": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "6108": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "6109": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "6110": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/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": 36, + "start_line": 25 + } + }, + "6111": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "6112": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + } + }, + "6114": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "6115": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 31, + "start_line": 29 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 28 + } + }, + "6116": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 55, + "start_line": 29 + } + }, + "6117": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + } + }, + "6119": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 9, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "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 + } + }, + "6120": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 9, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "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": 43, + "start_line": 7 + } + }, + "6121": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig_deferred_disable_request", + "src.multisig.library.Multisig_deferred_disable_request.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/impl.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "6122": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 108, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 108 + } + }, + "6124": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 112 + } + }, + "6126": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 116 + }, + "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": 102 + } + }, + "6127": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 103 + } + }, + "6128": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 104, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 104 + } + }, + "6129": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 116 + } + }, + "6131": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 117 + } + }, + "6133": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 120 + }, + "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": 38, + "start_line": 116 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6134": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 120 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 116 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6135": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 116, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 120 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 116 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6136": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 36, + "start_line": 120 + }, + "While expanding the reference 'num_multisig_signers' in:" + ], + "start_col": 7, + "start_line": 105 + } + }, + "6137": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 120 + } + }, + "6139": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 121, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 121 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 120 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "6140": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 121, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 121 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 120 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "6141": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 105, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 121, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 26, + "start_line": 121 + }, + "While expanding the reference 'num_multisig_signers' in:" + ], + "start_col": 7, + "start_line": 105 + } + }, + "6142": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 121, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 121 + } + }, + "6144": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 121, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 102 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 121 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "6145": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 120, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 103 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 120 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "6146": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigSet/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 76, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 121, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 104, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 104 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 121 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 76 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "6147": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 123, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 123 + } + }, + "6148": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_multisig_num_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 131 + }, + "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": 127 + } + }, + "6149": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_multisig_num_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 131 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 128 + } + }, + "6150": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_multisig_num_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 129, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 131 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 129 + } + }, + "6151": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_multisig_num_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 131, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 131 + } + }, + "6153": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_multisig_num_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 133, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 133 + } + }, + "6154": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 141, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 141 + } + }, + "6156": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 142 + }, + "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": 137 + } + }, + "6157": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 142 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 138 + } + }, + "6158": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 142 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 139 + } + }, + "6159": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 142 + } + }, + "6161": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 144 + } + }, + "6163": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 145, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 137 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 142 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6164": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 145, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 138 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 142 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6165": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 145, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 139 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 142 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6166": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 145, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 145 + } + }, + "6168": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 145, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 145 + } + }, + "6169": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 33, + "start_line": 147 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 298 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 142 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6170": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 33, + "start_line": 147 + } + }, + "6172": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 147 + }, + "While auto generating local variable for 'block_timestamp'." + ], + "start_col": 14, + "start_line": 147 + } + }, + "6173": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 147, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 249, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 27, + "start_line": 148 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 249 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 147 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 298 + } + }, + "6174": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 27, + "start_line": 148 + } + }, + "6176": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 148 + }, + "While auto generating local variable for 'block_num'." + ], + "start_col": 14, + "start_line": 148 + } + }, + "6177": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 249, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 148, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 111, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 149 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 148 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 249 + } + }, + "6178": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 111, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 149 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 142 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6179": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 111, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 149 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 142 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6180": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 70, + "start_line": 149 + } + }, + "6181": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 93, + "start_line": 149 + } + }, + "6182": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 111, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 149 + } + }, + "6184": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 149 + } + }, + "6185": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 149 + } + }, + "6186": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 149 + } + }, + "6187": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 149 + } + }, + "6188": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 149 + } + }, + "6189": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 149 + } + }, + "6190": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 149 + } + }, + "6191": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 149 + } + }, + "6192": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 111, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "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": 38, + "start_line": 149 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + } + }, + "6193": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 111, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 149 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "6194": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 111, + "end_line": 149, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 149 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "6195": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 66, + "start_line": 151 + } + }, + "6197": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6198": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6199": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6200": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 48, + "start_line": 152 + } + }, + "6202": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 100, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 64, + "start_line": 152 + } + }, + "6204": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 52, + "start_line": 152 + } + }, + "6206": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 48, + "start_line": 152 + } + }, + "6207": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 17, + "start_line": 152 + }, + "While auto generating local variable for 'is_disable_multisig_selector'." + ], + "start_col": 17, + "start_line": 152 + } + }, + "6208": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 140, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 156, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 73, + "start_line": 156 + }, + "While expanding the reference 'selector' in:" + ], + "start_col": 7, + "start_line": 140 + } + }, + "6209": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 156, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 156 + } + }, + "6211": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 157, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 157 + } + }, + "6213": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 157, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 157 + } + }, + "6215": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 158 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 137 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6216": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 158 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 138 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6217": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 158 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 139 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6218": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 158 + } + }, + "6220": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 158, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 158 + } + }, + "6221": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 172 + }, + "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": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6222": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6223": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 151, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 66, + "start_line": 151 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6224": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 166, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 44, + "start_line": 172 + }, + "While expanding the reference 'pendingTxn' in:" + ], + "start_col": 36, + "start_line": 166 + } + }, + "6225": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 167, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 44, + "start_line": 172 + }, + "While expanding the reference 'pendingTxn' in:" + ], + "start_col": 33, + "start_line": 167 + }, + "While expanding the reference 'expire_at_sec' in:" + ], + "start_col": 29, + "start_line": 162 + } + }, + "6227": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 168, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 44, + "start_line": 172 + }, + "While expanding the reference 'pendingTxn' in:" + ], + "start_col": 39, + "start_line": 168 + }, + "While expanding the reference 'expire_at_block_num' in:" + ], + "start_col": 35, + "start_line": 163 + } + }, + "6229": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 169, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 44, + "start_line": 172 + }, + "While expanding the reference 'pendingTxn' in:" + ], + "start_col": 31, + "start_line": 169 + } + }, + "6230": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 152, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 170, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 44, + "start_line": 172 + }, + "While expanding the reference 'pendingTxn' in:" + ], + "start_col": 51, + "start_line": 170 + }, + "While expanding the reference 'is_disable_multisig_selector' in:" + ], + "start_col": 17, + "start_line": 152 + }, + "While auto generating local variable for 'is_disable_multisig_selector'." + ], + "start_col": 17, + "start_line": 152 + } + }, + "6231": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 172 + } + }, + "6233": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 48, + "start_line": 174 + } + }, + "6235": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 174 + } + }, + "6236": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 175, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 175 + } + }, + "6238": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 175, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 175 + } + }, + "6239": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 176, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 176 + } + }, + "6240": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 177, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 48, + "start_line": 177 + } + }, + "6242": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 177, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 177 + } + }, + "6243": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 178 + } + }, + "6244": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 178, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 178 + } + }, + "6245": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 162, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 42, + "start_line": 179 + }, + "While expanding the reference 'expire_at_sec' in:" + ], + "start_col": 29, + "start_line": 162 + } + }, + "6247": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 179, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 179 + } + }, + "6248": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 163, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 180, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 42, + "start_line": 180 + }, + "While expanding the reference 'expire_at_block_num' in:" + ], + "start_col": 35, + "start_line": 163 + } + }, + "6250": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 180, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 180 + } + }, + "6251": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 181 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 172 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "6252": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 20, + "start_line": 181 + } + }, + "6254": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 174, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 23, + "start_line": 181 + }, + "While expanding the reference 'pendingTxnEvtKeys' in:" + ], + "start_col": 20, + "start_line": 174 + } + }, + "6255": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 42, + "start_line": 181 + } + }, + "6257": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 177, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 45, + "start_line": 181 + }, + "While expanding the reference 'pendingTxnEvtData' in:" + ], + "start_col": 20, + "start_line": 177 + } + }, + "6258": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 181, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 181 + } + }, + "6260": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 182 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 138 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 172 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "6261": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 172, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 182 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 139 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 172 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "6262": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 182, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 35, + "start_line": 182 + } + }, + "6264": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_execute" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 182 + } + }, + "6265": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 186, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 46, + "start_line": 190 + }, + "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": 186 + } + }, + "6266": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 46, + "start_line": 190 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 187 + } + }, + "6267": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 46, + "start_line": 190 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 188 + } + }, + "6268": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 190, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 46, + "start_line": 190 + } + }, + "6270": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 192, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 192 + } + }, + "6271": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 205, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 205 + } + }, + "6273": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 196, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 46, + "start_line": 207 + }, + "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": 196 + } + }, + "6274": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 46, + "start_line": 207 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 197 + } + }, + "6275": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 46, + "start_line": 207 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 198 + } + }, + "6276": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 46, + "start_line": 207 + } + }, + "6278": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 46, + "start_line": 207 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 46, + "start_line": 207 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6279": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 207 + }, + "While auto generating local variable for 'pending_multisig_transaction'." + ], + "start_col": 14, + "start_line": 207 + } + }, + "6280": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 207 + }, + "While auto generating local variable for 'pending_multisig_transaction'." + ], + "start_col": 14, + "start_line": 207 + } + }, + "6281": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 207 + }, + "While auto generating local variable for 'pending_multisig_transaction'." + ], + "start_col": 14, + "start_line": 207 + } + }, + "6282": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 207 + }, + "While auto generating local variable for 'pending_multisig_transaction'." + ], + "start_col": 14, + "start_line": 207 + } + }, + "6283": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 207 + }, + "While auto generating local variable for 'pending_multisig_transaction'." + ], + "start_col": 14, + "start_line": 207 + } + }, + "6284": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 208, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 31, + "start_line": 208 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 207 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6285": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 208, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 31, + "start_line": 208 + } + }, + "6287": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 208, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 208 + } + }, + "6288": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 208, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 208, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 31, + "start_line": 208 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 31, + "start_line": 208 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "6289": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 25, + "start_line": 210 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 207 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6290": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 36, + "start_line": 210 + } + }, + "6292": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 58, + "start_line": 210 + } + }, + "6293": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 25, + "start_line": 210 + } + }, + "6295": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 25, + "start_line": 210 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 25, + "start_line": 210 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "6296": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 210 + }, + "While auto generating local variable for 'is_estfee'." + ], + "start_col": 13, + "start_line": 210 + } + }, + "6297": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 212, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 212 + } + }, + "6299": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 214, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 36, + "start_line": 214 + } + }, + "6300": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 214, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 24, + "start_line": 214 + } + }, + "6302": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 214, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 85, + "start_line": 214 + } + }, + "6304": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 214, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 17, + "start_line": 214 + } + }, + "6305": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 208, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 208, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 208 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 31, + "start_line": 208 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "6306": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 207, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 207 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 46, + "start_line": 207 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6307": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 210, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 210 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 25, + "start_line": 210 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "6308": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 218 + } + }, + "6309": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 36, + "start_line": 218 + } + }, + "6310": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 217 + } + }, + "6312": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + } + }, + "6313": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "6314": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "6315": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 217 + }, + "While auto generating local variable for 'current_signer'." + ], + "start_col": 14, + "start_line": 217 + } + }, + "6316": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 217 + }, + "While auto generating local variable for 'current_signer'." + ], + "start_col": 14, + "start_line": 217 + } + }, + "6317": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 217 + }, + "While auto generating local variable for 'current_signer'." + ], + "start_col": 14, + "start_line": 217 + } + }, + "6318": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 217 + }, + "While auto generating local variable for 'current_signer'." + ], + "start_col": 14, + "start_line": 217 + } + }, + "6319": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 217 + }, + "While auto generating local variable for 'current_signer'." + ], + "start_col": 14, + "start_line": 217 + } + }, + "6320": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 217 + }, + "While auto generating local variable for 'current_signer'." + ], + "start_col": 14, + "start_line": 217 + } + }, + "6321": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 217 + }, + "While auto generating local variable for 'current_signer'." + ], + "start_col": 14, + "start_line": 217 + } + }, + "6322": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 217, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 217 + }, + "While auto generating local variable for 'current_signer'." + ], + "start_col": 14, + "start_line": 217 + } + }, + "6323": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 221, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 221 + } + }, + "6325": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 224, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 21, + "start_line": 224 + } + }, + "6326": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 224, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 24, + "start_line": 223 + } + }, + "6328": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 224, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 88, + "start_line": 224 + } + }, + "6330": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 224, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 17, + "start_line": 223 + } + }, + "6331": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 201, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 228, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 57, + "start_line": 228 + }, + "While expanding the reference 'pending_nonce' in:" + ], + "start_col": 9, + "start_line": 201 + } + }, + "6332": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 228, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 51, + "start_line": 228 + } + }, + "6334": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 228, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 51, + "start_line": 228 + } + }, + "6336": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 22, + "start_line": 229 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + } + }, + "6337": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 22, + "start_line": 229 + } + }, + "6339": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 284, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 233 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 284 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 229 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + } + }, + "6340": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 231, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 285, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 233 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 9, + "start_line": 285 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 28, + "start_line": 231 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "6341": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 218, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 286, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 233 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 286 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 32, + "start_line": 217 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "6342": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 229, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 234, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 21, + "start_line": 234 + }, + "While expanding the reference 'self' in:" + ], + "start_col": 14, + "start_line": 229 + } + }, + "6343": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 234, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 27, + "start_line": 234 + }, + "While expanding the reference 'pending_calldata_len' in:" + ], + "start_col": 9, + "start_line": 200 + } + }, + "6344": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 234, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 49, + "start_line": 234 + }, + "While expanding the reference 'pending_calldata' in:" + ], + "start_col": 37, + "start_line": 200 + } + }, + "6345": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 201, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 235, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 21, + "start_line": 235 + }, + "While expanding the reference 'pending_nonce' in:" + ], + "start_col": 9, + "start_line": 201 + } + }, + "6346": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 202, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 235, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 36, + "start_line": 235 + }, + "While expanding the reference 'pending_max_fee' in:" + ], + "start_col": 9, + "start_line": 202 + } + }, + "6347": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 203, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 236, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 21, + "start_line": 236 + }, + "While expanding the reference 'pending_transaction_version' in:" + ], + "start_col": 9, + "start_line": 203 + } + }, + "6348": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 236, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 50, + "start_line": 236 + } + }, + "6349": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 228, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 237, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 21, + "start_line": 237 + }, + "While expanding the reference 'nonce_as_additional_data' in:" + ], + "start_col": 17, + "start_line": 228 + } + }, + "6350": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 233 + } + }, + "6352": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 243, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 243 + } + }, + "6354": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 244, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 17, + "start_line": 244 + } + }, + "6355": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 284, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 249 + }, + "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": 39, + "start_line": 233 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 284 + } + }, + "6356": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 285, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 240, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 249 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 240 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 39, + "start_line": 233 + }, + "While trying to update the implicit return value 'hash_ptr' in:" + ], + "start_col": 9, + "start_line": 285 + } + }, + "6357": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 286, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 238, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 249 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 233 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 286 + } + }, + "6358": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 250, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 30, + "start_line": 250 + } + }, + "6360": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 251, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 27, + "start_line": 251 + } + }, + "6362": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 252, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 33, + "start_line": 252 + } + }, + "6364": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 253, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 25, + "start_line": 253 + } + }, + "6366": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 254, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 45, + "start_line": 254 + } + }, + "6368": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 249 + } + }, + "6370": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "6371": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "6372": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 256, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 54, + "start_line": 256 + } + }, + "6374": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 256, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 256 + } + }, + "6375": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 257, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 45, + "start_line": 257 + } + }, + "6377": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 257, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 257 + } + }, + "6378": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 258, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 258 + } + }, + "6379": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 259, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 54, + "start_line": 259 + } + }, + "6381": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 259, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 259 + } + }, + "6382": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 260, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 260 + } + }, + "6383": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 261, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 261 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "6384": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 261, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 20, + "start_line": 261 + } + }, + "6386": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 256, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 261, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 23, + "start_line": 261 + }, + "While expanding the reference 'pendingTxnSignedEvtKeys' in:" + ], + "start_col": 20, + "start_line": 256 + } + }, + "6387": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 261, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 48, + "start_line": 261 + } + }, + "6389": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 259, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 261, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 51, + "start_line": 261 + }, + "While expanding the reference 'pendingTxnSignedEvtData' in:" + ], + "start_col": 20, + "start_line": 259 + } + }, + "6390": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 261, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 261 + } + }, + "6392": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 267, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 30, + "start_line": 267 + } + }, + "6394": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 267, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 267, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 267 + }, + "While auto generating local variable for 'calls'." + ], + "start_col": 14, + "start_line": 267 + } + }, + "6395": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 271, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 271 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 30, + "start_line": 265 + } + }, + "6396": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 271, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 271 + } + }, + "6398": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 271, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 271 + } + }, + "6400": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 261, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 443, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 273, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 268 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 443 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 261 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + } + }, + "6401": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 269, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 269 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 30, + "start_line": 265 + } + }, + "6402": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 270, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 270 + }, + "While expanding the reference 'call_array' in:" + ], + "start_col": 26, + "start_line": 266 + } + }, + "6404": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 271, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 271 + } + }, + "6405": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 267, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 267, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 272, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 272 + }, + "While expanding the reference 'calls' in:" + ], + "start_col": 14, + "start_line": 267 + }, + "While auto generating local variable for 'calls'." + ], + "start_col": 14, + "start_line": 267 + } + }, + "6406": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 273, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 268 + } + }, + "6408": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 33, + "start_line": 277 + } + }, + "6410": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 277 + }, + "While auto generating local variable for 'response'." + ], + "start_col": 14, + "start_line": 277 + } + }, + "6411": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 443, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 273, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 416, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 30, + "start_line": 278 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 416 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 268 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 443 + } + }, + "6412": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 52, + "start_line": 278 + }, + "While expanding the reference 'calls_len' in:" + ], + "start_col": 25, + "start_line": 274 + } + }, + "6413": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 267, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 267, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 63, + "start_line": 278 + }, + "While expanding the reference 'calls' in:" + ], + "start_col": 14, + "start_line": 267 + }, + "While auto generating local variable for 'calls'." + ], + "start_col": 14, + "start_line": 267 + } + }, + "6414": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 70, + "start_line": 278 + }, + "While expanding the reference 'response' in:" + ], + "start_col": 14, + "start_line": 277 + }, + "While auto generating local variable for 'response'." + ], + "start_col": 14, + "start_line": 277 + } + }, + "6415": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 30, + "start_line": 278 + } + }, + "6417": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 416, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 196, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 280, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 278 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 416 + } + }, + "6418": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 280, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 197 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "6419": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 255, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 280, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 198 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "6420": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 280, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 30, + "start_line": 280 + }, + "While expanding the reference 'response_len' in:" + ], + "start_col": 14, + "start_line": 278 + } + }, + "6421": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 280, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 53, + "start_line": 280 + }, + "While expanding the reference 'response' in:" + ], + "start_col": 14, + "start_line": 277 + }, + "While auto generating local variable for 'response'." + ], + "start_col": 14, + "start_line": 277 + } + }, + "6422": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 280, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 280 + } + }, + "6423": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 294, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 294 + } + }, + "6425": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 285, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 45, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 296, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 25, + "start_line": 45 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 9, + "start_line": 285 + } + }, + "6426": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 294, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 296, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 28, + "start_line": 296 + }, + "While expanding the reference 'hash_state_ptr' in:" + ], + "start_col": 14, + "start_line": 294 + } + }, + "6427": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 296, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 49, + "start_line": 296 + } + }, + "6429": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 296, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 295 + } + }, + "6431": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 291, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 49, + "start_line": 298 + }, + "While expanding the reference 'pending_transaction_version' in:" + ], + "start_col": 9, + "start_line": 291 + } + }, + "6432": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 299, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 297 + } + }, + "6434": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 288, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 301, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 49, + "start_line": 301 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 9, + "start_line": 288 + } + }, + "6435": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 302, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 300 + } + }, + "6437": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 304, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 49, + "start_line": 304 + } + }, + "6439": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 305, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 303 + } + }, + "6441": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 289, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 308, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 26, + "start_line": 308 + }, + "While expanding the reference 'pending_calldata' in:" + ], + "start_col": 37, + "start_line": 289 + } + }, + "6442": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 289, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 309, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 29, + "start_line": 309 + }, + "While expanding the reference 'pending_calldata_len' in:" + ], + "start_col": 9, + "start_line": 289 + } + }, + "6443": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 310, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 306 + } + }, + "6445": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 290, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 312, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 49, + "start_line": 312 + }, + "While expanding the reference 'pending_max_fee' in:" + ], + "start_col": 30, + "start_line": 290 + } + }, + "6446": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 313, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 311 + } + }, + "6448": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 292, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 315, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 49, + "start_line": 315 + }, + "While expanding the reference 'chain_id' in:" + ], + "start_col": 9, + "start_line": 292 + } + }, + "6449": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 316, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 314 + } + }, + "6451": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 292, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 320, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 22, + "start_line": 320 + }, + "While expanding the reference 'additional_data' in:" + ], + "start_col": 25, + "start_line": 292 + } + }, + "6452": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 321, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 25, + "start_line": 321 + } + }, + "6454": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 322, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 318 + } + }, + "6456": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 324, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 31, + "start_line": 324 + } + }, + "6458": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 284, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 284, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 326, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 326 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 284 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 284 + } + }, + "6459": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 70, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/hash_state.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 324, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 285, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 326, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 326 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 9, + "start_line": 285 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 31, + "start_line": 324 + }, + "While trying to update the implicit return value 'hash_ptr' in:" + ], + "start_col": 20, + "start_line": 70 + } + }, + "6460": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 286, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 286, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 326, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 326 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 286 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 286 + } + }, + "6461": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 324, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 326, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 31, + "start_line": 326 + }, + "While expanding the reference 'computed_hash' in:" + ], + "start_col": 14, + "start_line": 324 + } + }, + "6462": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig._compute_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 326, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 326 + } + }, + "6463": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 330, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 341, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 335 + }, + "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": 9, + "start_line": 330 + } + }, + "6464": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 341, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 335 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 331 + } + }, + "6465": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 332, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 341, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 335 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 332 + } + }, + "6466": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 336, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 30, + "start_line": 336 + } + }, + "6468": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 337, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 27, + "start_line": 337 + } + }, + "6470": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 338, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 33, + "start_line": 338 + } + }, + "6472": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 339, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 25, + "start_line": 339 + } + }, + "6474": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 340, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 45, + "start_line": 340 + } + }, + "6476": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 341, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 335 + } + }, + "6478": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 344, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 36, + "start_line": 344 + } + }, + "6480": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 344, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 344 + } + }, + "6482": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 344, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 345, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 345 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 344 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "6483": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 344, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 345, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 345 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 344 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "6484": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 345, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 345 + } + }, + "6486": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 345, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 330, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 346, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 346 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 330 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 345 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "6487": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 344, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 346, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 346 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 344 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "6488": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisabled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 80, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 345, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 332, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 346, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 346 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 332 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 345 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "6489": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 346, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 346 + } + }, + "6490": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 350, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 357, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 25, + "start_line": 357 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 350 + } + }, + "6491": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 357, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 25, + "start_line": 357 + } + }, + "6493": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 357, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 357 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "6494": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 351, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 351 + } + }, + "6495": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 352 + } + }, + "6496": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 359, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 359 + } + }, + "6497": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 360, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 360 + } + }, + "6498": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 358 + } + }, + "6500": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 364, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 364 + } + }, + "6502": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 369, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 369 + }, + "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": 32, + "start_line": 358 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + } + }, + "6503": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 369, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 369 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 358 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "6504": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 361, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 369, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 369 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 32, + "start_line": 358 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "6505": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 369, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 369 + } + }, + "6507": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 372, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 372 + } + }, + "6509": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 369, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 33, + "start_line": 375 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 298 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 369 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6510": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 33, + "start_line": 375 + } + }, + "6512": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 377, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 29, + "start_line": 377 + }, + "While expanding the reference 'account_etd' in:" + ], + "start_col": 7, + "start_line": 353 + } + }, + "6513": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 377, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 377 + } + }, + "6515": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 381 + }, + "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": 33, + "start_line": 375 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 298 + } + }, + "6516": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 369, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 381 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 369 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6517": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 369, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 381 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 369 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6518": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 379, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 380, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 49, + "start_line": 381 + }, + "While expanding the reference 'remove_req' in:" + ], + "start_col": 67, + "start_line": 380 + }, + "While expanding the reference 'expire_at' in:" + ], + "start_col": 25, + "start_line": 379 + } + }, + "6519": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 381 + } + }, + "6521": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 382, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 382 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 381 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "6522": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 382, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 382 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 381 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "6523": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 379, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 380, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 382, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 37, + "start_line": 382 + }, + "While expanding the reference 'remove_req' in:" + ], + "start_col": 67, + "start_line": 380 + }, + "While expanding the reference 'expire_at' in:" + ], + "start_col": 25, + "start_line": 379 + } + }, + "6524": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 382, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 382 + } + }, + "6526": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 382, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 350, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 384, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 350 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 382 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "6527": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 381, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 351, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 384, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 351 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 381 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "6528": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequest/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 68, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 382, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 384, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 352 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 382 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "6529": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 384, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 384 + } + }, + "6530": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 388, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 392 + }, + "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": 388 + } + }, + "6531": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 389, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 392 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 389 + } + }, + "6532": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 392 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 390 + } + }, + "6533": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 392 + } + }, + "6535": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 393 + } + }, + "6536": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 397, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 401, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 401 + }, + "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": 397 + } + }, + "6537": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 398, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 401, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 401 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 398 + } + }, + "6538": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 399, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 401, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 401 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 399 + } + }, + "6539": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 401, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 401 + } + }, + "6541": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 404, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 404 + } + }, + "6543": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 401, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 407 + }, + "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": 34, + "start_line": 401 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6544": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 401, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 407 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 401 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6545": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 401, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 407 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 401 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6546": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 408, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 54, + "start_line": 408 + } + }, + "6548": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 407 + } + }, + "6550": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 410 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 407 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "6551": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 410 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 407 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "6552": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 401, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 46, + "start_line": 410 + }, + "While expanding the reference 'deferred_request' in:" + ], + "start_col": 14, + "start_line": 401 + } + }, + "6553": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 410 + } + }, + "6555": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 397, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 412, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 412 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 397 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 410 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "6556": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 409, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 398, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 412, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 412 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 398 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 407 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "6557": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/MultisigDisableRequestCancelled/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 72, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 410, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 399, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 412, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 412 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 399 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 410 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 72 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "6558": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 412, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 412 + } + }, + "6559": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 416, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 44, + "start_line": 416 + } + }, + "6561": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 417, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 417 + } + }, + "6563": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 417, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 48, + "start_line": 416 + } + }, + "6565": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 417, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 44, + "start_line": 416 + } + }, + "6566": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 418, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 57, + "start_line": 418 + } + }, + "6568": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 419, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 419 + } + }, + "6570": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 419, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 61, + "start_line": 418 + } + }, + "6572": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 419, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 57, + "start_line": 418 + } + }, + "6573": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 420, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 54, + "start_line": 420 + } + }, + "6575": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 421, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 421 + } + }, + "6577": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 421, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 58, + "start_line": 420 + } + }, + "6579": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 421, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 54, + "start_line": 420 + } + }, + "6580": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 425, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 424 + } + }, + "6581": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 426, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 424 + } + }, + "6582": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 427, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 423 + } + }, + "6583": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 439, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 439 + } + }, + "6585": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 432, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 432, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 440 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 432 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 432 + } + }, + "6586": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 440 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 433 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 433 + } + }, + "6587": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 440 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 433 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 433 + } + }, + "6588": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 43, + "start_line": 440 + }, + "While expanding the reference 'pending_multisig_txn' in:" + ], + "start_col": 9, + "start_line": 435 + } + }, + "6589": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 43, + "start_line": 440 + }, + "While expanding the reference 'pending_multisig_txn' in:" + ], + "start_col": 9, + "start_line": 435 + } + }, + "6590": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 43, + "start_line": 440 + }, + "While expanding the reference 'pending_multisig_txn' in:" + ], + "start_col": 9, + "start_line": 435 + } + }, + "6591": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 43, + "start_line": 440 + }, + "While expanding the reference 'pending_multisig_txn' in:" + ], + "start_col": 9, + "start_line": 435 + } + }, + "6592": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 43, + "start_line": 440 + }, + "While expanding the reference 'pending_multisig_txn' in:" + ], + "start_col": 9, + "start_line": 435 + } + }, + "6593": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 440, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 440 + } + }, + "6594": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 445, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 40, + "start_line": 444 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 433 + } + }, + "6595": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 445, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 445 + } + }, + "6596": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 436, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 445, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 55, + "start_line": 445 + }, + "While expanding the reference 'block_num' in:" + ], + "start_col": 9, + "start_line": 436 + } + }, + "6597": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 445, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 40, + "start_line": 444 + } + }, + "6599": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 445, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 446 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 40, + "start_line": 444 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "6600": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 447 + } + }, + "6601": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 437, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 49, + "start_line": 447 + }, + "While expanding the reference 'block_timestamp' in:" + ], + "start_col": 9, + "start_line": 437 + } + }, + "6602": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 34, + "start_line": 446 + } + }, + "6604": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 448, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 448 + } + }, + "6605": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 448, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 448 + } + }, + "6607": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 448, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 448 + } + }, + "6609": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 432, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 456, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 456 + }, + "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": 9, + "start_line": 432 + } + }, + "6610": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 456, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 456 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 433 + } + }, + "6611": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 456, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 456 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 446 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "6612": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 450, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 456, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 48, + "start_line": 456 + }, + "While expanding the reference 'empty_pending_txn' in:" + ], + "start_col": 34, + "start_line": 450 + } + }, + "6614": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 451, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 456, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 48, + "start_line": 456 + }, + "While expanding the reference 'empty_pending_txn' in:" + ], + "start_col": 31, + "start_line": 451 + } + }, + "6616": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 452, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 456, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 48, + "start_line": 456 + }, + "While expanding the reference 'empty_pending_txn' in:" + ], + "start_col": 37, + "start_line": 452 + } + }, + "6618": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 453, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 456, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 48, + "start_line": 456 + }, + "While expanding the reference 'empty_pending_txn' in:" + ], + "start_col": 29, + "start_line": 453 + } + }, + "6620": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 454, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 456, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 48, + "start_line": 456 + }, + "While expanding the reference 'empty_pending_txn' in:" + ], + "start_col": 49, + "start_line": 454 + } + }, + "6622": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 456, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 456 + } + }, + "6624": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 450, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 457, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 43, + "start_line": 457 + }, + "While expanding the reference 'empty_pending_txn' in:" + ], + "start_col": 34, + "start_line": 450 + } + }, + "6626": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 451, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 457, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 43, + "start_line": 457 + }, + "While expanding the reference 'empty_pending_txn' in:" + ], + "start_col": 31, + "start_line": 451 + } + }, + "6628": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 452, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 457, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 43, + "start_line": 457 + }, + "While expanding the reference 'empty_pending_txn' in:" + ], + "start_col": 37, + "start_line": 452 + } + }, + "6630": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 453, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 457, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 43, + "start_line": 457 + }, + "While expanding the reference 'empty_pending_txn' in:" + ], + "start_col": 29, + "start_line": 453 + } + }, + "6632": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 454, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 457, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 43, + "start_line": 457 + }, + "While expanding the reference 'empty_pending_txn' in:" + ], + "start_col": 49, + "start_line": 454 + } + }, + "6634": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 457, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 457 + } + }, + "6635": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 432, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 432, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 460, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 460 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 432 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 432 + } + }, + "6636": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 460, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 460 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 433 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 433 + } + }, + "6637": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 460, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 460 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 433 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 446 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "6638": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 460, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 460 + }, + "While expanding the reference 'pending_multisig_txn' in:" + ], + "start_col": 9, + "start_line": 435 + } + }, + "6639": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 460, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 460 + }, + "While expanding the reference 'pending_multisig_txn' in:" + ], + "start_col": 9, + "start_line": 435 + } + }, + "6640": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 460, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 460 + }, + "While expanding the reference 'pending_multisig_txn' in:" + ], + "start_col": 9, + "start_line": 435 + } + }, + "6641": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 460, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 460 + }, + "While expanding the reference 'pending_multisig_txn' in:" + ], + "start_col": 9, + "start_line": 435 + } + }, + "6642": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 435, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 460, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 460 + }, + "While expanding the reference 'pending_multisig_txn' in:" + ], + "start_col": 9, + "start_line": 435 + } + }, + "6643": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 460, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 460 + } + }, + "6644": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 465, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 469, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 469 + }, + "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": 465 + } + }, + "6645": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 466, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 469, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 469 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 466 + } + }, + "6646": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 467, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 469, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 469 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 467 + } + }, + "6647": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 469, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 469 + } + }, + "6649": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 470, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 41, + "start_line": 470 + } + }, + "6651": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 469, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 472, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 44, + "start_line": 471 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 469 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6652": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 472, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 472 + } + }, + "6653": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 468, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 472, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 45, + "start_line": 472 + }, + "While expanding the reference 'block_timestamp' in:" + ], + "start_col": 7, + "start_line": 468 + } + }, + "6654": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 472, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 44, + "start_line": 471 + } + }, + "6656": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 474, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 474 + } + }, + "6657": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 474, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 474 + } + }, + "6659": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 474, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 474 + } + }, + "6661": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 469, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 330, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 475, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 475 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 330 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 469 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6662": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 469, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 475, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 475 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 469 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6663": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 472, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 332, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 475, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 475 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 332 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 44, + "start_line": 471 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "6664": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 475, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 475 + } + }, + "6666": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 476, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 476 + } + }, + "6667": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 469, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 465, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 479 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 465 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 469 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6668": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_deferred_disable_request/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 469, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 466, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 479 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 466 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 469 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6669": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 472, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 467, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 479 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 467 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 44, + "start_line": 471 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "6670": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.apply_elapsed_etd_requests" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 479, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 479 + } + }, + "6671": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 492, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 492 + } + }, + "6673": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 483, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 494 + }, + "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": 483 + } + }, + "6674": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 484, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 494 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 484 + } + }, + "6675": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 485, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 494 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 485 + } + }, + "6676": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 494 + } + }, + "6678": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 495, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 32, + "start_line": 495 + } + }, + "6680": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 496, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 496 + } + }, + "6682": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 483, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 497 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 483 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 494 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6683": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 484, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 497 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 484 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 494 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6684": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 485, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 497 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 485 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 494 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6685": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 486, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 486, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 497 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 486 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 486 + } + }, + "6686": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 27, + "start_line": 497 + } + }, + "6688": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 50, + "start_line": 497 + } + }, + "6690": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 497, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 497 + } + }, + "6691": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 500, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 40, + "start_line": 500 + }, + "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": 38, + "start_line": 494 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6692": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 500, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 40, + "start_line": 500 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 494 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6693": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 494, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 500, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 40, + "start_line": 500 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 494 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6694": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 500, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 40, + "start_line": 500 + } + }, + "6696": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 501, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 501 + } + }, + "6698": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 502, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 502 + } + }, + "6700": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 500, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 330, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 505, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 505 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 330 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 40, + "start_line": 500 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6701": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 500, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 505, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 505 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 500 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6702": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 500, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 332, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 505, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 505 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 332 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 40, + "start_line": 500 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6703": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 505, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 505 + } + }, + "6705": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 486, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 486, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 506, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 506 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 486 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 486 + } + }, + "6706": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 506, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 27, + "start_line": 506 + } + }, + "6708": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 506, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 50, + "start_line": 506 + } + }, + "6710": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 506, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 506 + } + }, + "6711": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 500, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 510 + }, + "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": 40, + "start_line": 500 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "6712": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 500, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 510 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 500 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "6713": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 500, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_pending_transaction/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 510 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 40, + "start_line": 500 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "6714": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 510, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 510 + } + }, + "6716": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 490, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 513, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 513 + }, + "While expanding the reference 'block_num' in:" + ], + "start_col": 50, + "start_line": 490 + } + }, + "6717": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 490, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 513, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 24, + "start_line": 513 + }, + "While expanding the reference 'block_timestamp' in:" + ], + "start_col": 27, + "start_line": 490 + } + }, + "6718": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 514, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 511 + } + }, + "6720": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 432, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 514, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 515 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 511 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 432 + } + }, + "6721": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 514, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 515 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 511 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 433 + } + }, + "6722": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 433, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 514, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 515 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 511 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 433 + } + }, + "6723": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 516 + } + }, + "6724": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 36, + "start_line": 516 + } + }, + "6725": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 515 + } + }, + "6727": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 515 + } + }, + "6728": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 515 + } + }, + "6729": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 515 + } + }, + "6730": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 515 + } + }, + "6731": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 515 + } + }, + "6732": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 515 + } + }, + "6733": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 515 + } + }, + "6734": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 515, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 14, + "start_line": 515 + } + }, + "6735": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + } + }, + "6736": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "6737": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "6738": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 518, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 35, + "start_line": 518 + } + }, + "6740": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 519, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 519 + } + }, + "6742": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 519, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 39, + "start_line": 518 + } + }, + "6744": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 519, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 35, + "start_line": 518 + } + }, + "6745": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 525, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 525 + } + }, + "6746": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 525, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 42, + "start_line": 524 + } + }, + "6748": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 18, + "start_line": 527 + } + }, + "6749": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 18, + "start_line": 527 + } + }, + "6750": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 17, + "start_line": 527 + } + }, + "6752": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 13, + "start_line": 527 + } + }, + "6754": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 530, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 65, + "start_line": 530 + } + }, + "6755": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 530, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 24, + "start_line": 530 + } + }, + "6757": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 530, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 90, + "start_line": 530 + } + }, + "6759": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 530, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 17, + "start_line": 530 + } + }, + "6760": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 353, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 483, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 534, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 534 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 483 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 353 + } + }, + "6761": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 484, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 534, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 534 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 484 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 354 + } + }, + "6762": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 516, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 485, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 534, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 534 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 485 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 38, + "start_line": 515 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 355 + } + }, + "6763": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 486, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 486, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 534, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 534 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 486 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 486 + } + }, + "6764": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 534, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 23, + "start_line": 534 + } + }, + "6766": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 534, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 46, + "start_line": 534 + } + }, + "6768": { + "accessible_scopes": [ + "src.multisig.library", + "src.multisig.library.Multisig", + "src.multisig.library.Multisig.multisig_validate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 534, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "start_col": 9, + "start_line": 534 + } + }, + "6769": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_only_self" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 16, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 22, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + } + }, + "6770": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_only_self" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 16, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 22, + "start_line": 16 + } + }, + "6772": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_only_self" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 16, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 24, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + } + }, + "6773": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_only_self" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 24, + "start_line": 17 + } + }, + "6775": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_only_self" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 13, + "start_line": 19 + } + }, + "6776": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_only_self" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 9, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 17 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "6777": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_only_self" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 9, + "start_line": 21 + } + }, + "6778": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_no_reentrance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 24, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 24, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 24 + } + }, + "6779": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_no_reentrance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 24, + "start_line": 26 + } + }, + "6781": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_no_reentrance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 28, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 13, + "start_line": 28 + } + }, + "6783": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_no_reentrance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 26, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 24, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 24 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 26 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "6784": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_no_reentrance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "6785": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_valid_transaction_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 30, + "start_line": 38 + } + }, + "6786": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_valid_transaction_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 47, + "start_line": 38 + } + }, + "6788": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_valid_transaction_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 38, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 13, + "start_line": 38 + } + }, + "6790": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_valid_transaction_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 30, + "start_line": 39 + } + }, + "6791": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_valid_transaction_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 47, + "start_line": 39 + } + }, + "6793": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_valid_transaction_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 39, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 13, + "start_line": 39 + } + }, + "6795": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_valid_transaction_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 34, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 9, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 43, + "start_line": 34 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 43, + "start_line": 34 + } + }, + "6796": { + "accessible_scopes": [ + "src.utils.Guards", + "src.utils.Guards.Guards", + "src.utils.Guards.Guards.assert_valid_transaction_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 42, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "start_col": 9, + "start_line": 42 + } + }, + "6797": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 46, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 246, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 50, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 246 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 46 + } + }, + "6798": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 47, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 247, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 50, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 247 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 47 + } + }, + "6799": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 48, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 50, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 248 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 48 + } + }, + "6800": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 49, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 50, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 39, + "start_line": 50 + }, + "While expanding the reference 'interfaceId' in:" + ], + "start_col": 3, + "start_line": 49 + } + }, + "6801": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 50, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 50 + } + }, + "6803": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 50, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 50 + } + }, + "6804": { + "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/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "6806": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 49, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 49 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6807": { + "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/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 49, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 26, + "start_line": 49 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "6809": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 66, + "start_line": 1 + } + }, + "6810": { + "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/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "6811": { + "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/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "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": 45 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "6812": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "6813": { + "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/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 49, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 49 + }, + "While handling calldata argument 'interfaceId'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "6815": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6816": { + "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/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 46, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 46 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "6817": { + "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/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 47, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 47 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "6818": { + "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/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 48, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "6819": { + "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/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 49, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 155, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 129, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_interfaceId' in:" + ], + "start_col": 3, + "start_line": 49 + }, + "While handling calldata argument 'interfaceId'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "6820": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + } + }, + "6822": { + "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/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "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": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "6823": { + "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/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "6825": { + "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/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "6826": { + "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/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "6827": { + "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/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "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": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "6828": { + "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/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "6829": { + "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/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "6830": { + "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/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "6831": { + "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/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6832": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 55, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 55, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 59, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 55 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 55 + } + }, + "6833": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 56, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 56, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 59, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 56 + } + }, + "6834": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 57, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 57, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 59, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 57 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 57 + } + }, + "6835": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 59, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 13, + "start_line": 59 + } + }, + "6837": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 59, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 59 + } + }, + "6838": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_impl_version/d207ac3afdeeb0089b1dce5ed0a50501c8bcd71f7e9aa8501afe91f6f87c28c2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_impl_version/d207ac3afdeeb0089b1dce5ed0a50501c8bcd71f7e9aa8501afe91f6f87c28c2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "6840": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 58, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 58 + }, + "While handling return value 'res'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6841": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 58, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_impl_version/d207ac3afdeeb0089b1dce5ed0a50501c8bcd71f7e9aa8501afe91f6f87c28c2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 9, + "start_line": 58 + }, + "While handling return value 'res'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "6843": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_impl_version/d207ac3afdeeb0089b1dce5ed0a50501c8bcd71f7e9aa8501afe91f6f87c28c2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_impl_version/d207ac3afdeeb0089b1dce5ed0a50501c8bcd71f7e9aa8501afe91f6f87c28c2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 61, + "start_line": 1 + } + }, + "6844": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_impl_version/d207ac3afdeeb0089b1dce5ed0a50501c8bcd71f7e9aa8501afe91f6f87c28c2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "6845": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_impl_version/d207ac3afdeeb0089b1dce5ed0a50501c8bcd71f7e9aa8501afe91f6f87c28c2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_impl_version/d207ac3afdeeb0089b1dce5ed0a50501c8bcd71f7e9aa8501afe91f6f87c28c2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "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": 54 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "6846": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_impl_version/d207ac3afdeeb0089b1dce5ed0a50501c8bcd71f7e9aa8501afe91f6f87c28c2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "6847": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6848": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 55, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 55 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "6849": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 56, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "6850": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 57, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 57 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "6851": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + } + }, + "6853": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 105, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 90, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "6854": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "6856": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "6857": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "6858": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "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": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "6859": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "6860": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "6861": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/a1780a419bee541aaac4b0762f568eac3489456c1c5551633b9b64635c854e72.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "6862": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_impl_version/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 54, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6863": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 65, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 69, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 69 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 65 + } + }, + "6864": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 69, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 69 + } + }, + "6866": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 69, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 72, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 72 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 43 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 69 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + } + }, + "6867": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 66, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 72, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 72 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 43 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 66 + } + }, + "6868": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 67, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 43, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 72, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 72 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 43 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 67 + } + }, + "6869": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 69, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 72, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 23, + "start_line": 72 + }, + "While expanding the reference 'proxy_admin' in:" + ], + "start_col": 10, + "start_line": 69 + } + }, + "6870": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 72, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 72 + } + }, + "6872": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 73, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 73 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 3, + "start_line": 68 + } + }, + "6873": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 73, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 73 + } + }, + "6875": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 75, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 75 + } + }, + "6876": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fcae171a11efdbb3d6f68abb567d4209a3b5b40b77b7badc1698f31527b74fb9.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 64 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 68 + }, + "While handling calldata argument 'public_key'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "6878": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6879": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 65, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "6880": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 66, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "6881": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 67, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 67 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "6882": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/fcae171a11efdbb3d6f68abb567d4209a3b5b40b77b7badc1698f31527b74fb9.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 153, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 128, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_public_key' in:" + ], + "start_col": 3, + "start_line": 68 + }, + "While handling calldata argument 'public_key'" + ], + "start_col": 33, + "start_line": 1 + } + }, + "6883": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + } + }, + "6885": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "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/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "6887": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "6888": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "6889": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "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": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "6890": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "6891": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "6893": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "6894": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 64, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 64 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6895": { + "accessible_scopes": ["__main__", "__main__", "__main__.upgrade"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 80, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 84, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 101 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 80 + } + }, + "6896": { + "accessible_scopes": ["__main__", "__main__", "__main__.upgrade"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 81, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 84, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 101 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 81 + } + }, + "6897": { + "accessible_scopes": ["__main__", "__main__", "__main__.upgrade"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 82, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 84, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 101 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 82 + } + }, + "6898": { + "accessible_scopes": ["__main__", "__main__", "__main__.upgrade"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 84, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 84 + } + }, + "6900": { + "accessible_scopes": ["__main__", "__main__", "__main__.upgrade"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 83, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 86, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 21, + "start_line": 86 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 3, + "start_line": 83 + } + }, + "6901": { + "accessible_scopes": ["__main__", "__main__", "__main__.upgrade"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 86, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 86 + } + }, + "6903": { + "accessible_scopes": ["__main__", "__main__", "__main__.upgrade"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 87, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 87 + } + }, + "6904": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/91c0b48f9b687319e236ed3867bdad18876ffe8f6e486b369a967770f2259384.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 83, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 79 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 79 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 83 + }, + "While handling calldata argument 'new_implementation'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "6906": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 79 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6907": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 80, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/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": 5, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "6908": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 81, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/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": 5, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "6909": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 82, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/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": 5, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "6910": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/91c0b48f9b687319e236ed3867bdad18876ffe8f6e486b369a967770f2259384.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 83, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 169, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 79 + }, + "While constructing the external wrapper for:" + ], + "start_col": 136, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_new_implementation' in:" + ], + "start_col": 3, + "start_line": 83 + }, + "While handling calldata argument 'new_implementation'" + ], + "start_col": 41, + "start_line": 1 + } + }, + "6911": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 79 + } + }, + "6913": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 79 + }, + "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/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 79 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "6915": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/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 + } + }, + "6916": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/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 + } + }, + "6917": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/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": 100, + "start_line": 1 + } + }, + "6918": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/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": 17, + "start_line": 1 + } + }, + "6919": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/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": 20, + "start_line": 4 + } + }, + "6921": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/upgrade/31e9c097d08e18a843ceac56695f6146566fc04b424572289896a925d057be47.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/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": 9, + "start_line": 3 + } + }, + "6922": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/upgrade/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 79, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 79 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6923": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 92, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 96, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 96 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 101 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 92 + } + }, + "6924": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 93, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 96, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 96 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 101 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 93 + } + }, + "6925": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 94, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 101, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 96, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 96 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 101 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 94 + } + }, + "6926": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 96, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 96 + } + }, + "6928": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 95, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 98, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 29, + "start_line": 98 + }, + "While expanding the reference 'from_version' in:" + ], + "start_col": 3, + "start_line": 95 + } + }, + "6929": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 98, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 98 + } + }, + "6931": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 99, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 99 + } + }, + "6932": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d8a789811823bf1b22d3771cebbac436edd10b8396641ce4c5ef2466717ebfc2.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 95, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 95 + }, + "While handling calldata argument 'from_version'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "6934": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6935": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 92, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "6936": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 93, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 93 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "6937": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 94, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 94 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "6938": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/d8a789811823bf1b22d3771cebbac436edd10b8396641ce4c5ef2466717ebfc2.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 95, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 157, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 130, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_from_version' in:" + ], + "start_col": 3, + "start_line": 95 + }, + "While handling calldata argument 'from_version'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "6939": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + } + }, + "6941": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "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/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "6943": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "6944": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "6945": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "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": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "6946": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "6947": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "6949": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/bde660c9c859b13c73bf25246d13c031767492533938b4bbe278afe82ebb65c1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "6950": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/migrate_storage/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 91, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6951": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 105, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 109, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 109 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 105 + } + }, + "6952": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 109, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 109 + } + }, + "6954": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 111, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 111 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 153 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 106 + } + }, + "6955": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 107, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 154, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 111, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 111 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 107 + } + }, + "6956": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 111, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 111 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 3, + "start_line": 108 + } + }, + "6957": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 111, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 111 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 3, + "start_line": 108 + } + }, + "6958": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 111, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 111 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 3, + "start_line": 108 + } + }, + "6959": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 111, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 111 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 3, + "start_line": 108 + } + }, + "6960": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 111, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 111 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 3, + "start_line": 108 + } + }, + "6961": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 111, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 111 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 3, + "start_line": 108 + } + }, + "6962": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 111, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 111 + }, + "While expanding the reference 'signer' in:" + ], + "start_col": 3, + "start_line": 108 + } + }, + "6963": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 111, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 111 + } + }, + "6965": { + "accessible_scopes": ["__main__", "__main__", "__main__.add_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 111, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "6966": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/add_signer/65d869f72406ce95295ebd34960a9e027030b01d75c34afe506d5c5773fb7e01.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/add_signer/65d869f72406ce95295ebd34960a9e027030b01d75c34afe506d5c5773fb7e01.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "6968": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/cb03049f16baf658a12148340f5c58b302db1daa4df59802c7b16fd0a4436af0.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 28, + "start_line": 108 + }, + "While handling return value 'signer_id'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6969": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/cb03049f16baf658a12148340f5c58b302db1daa4df59802c7b16fd0a4436af0.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/add_signer/65d869f72406ce95295ebd34960a9e027030b01d75c34afe506d5c5773fb7e01.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 28, + "start_line": 108 + }, + "While handling return value 'signer_id'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "6971": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/add_signer/65d869f72406ce95295ebd34960a9e027030b01d75c34afe506d5c5773fb7e01.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/add_signer/65d869f72406ce95295ebd34960a9e027030b01d75c34afe506d5c5773fb7e01.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 61, + "start_line": 1 + } + }, + "6972": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/add_signer/65d869f72406ce95295ebd34960a9e027030b01d75c34afe506d5c5773fb7e01.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "6973": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/add_signer/65d869f72406ce95295ebd34960a9e027030b01d75c34afe506d5c5773fb7e01.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/add_signer/65d869f72406ce95295ebd34960a9e027030b01d75c34afe506d5c5773fb7e01.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "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": 104 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "6974": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/add_signer/65d869f72406ce95295ebd34960a9e027030b01d75c34afe506d5c5773fb7e01.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "6975": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7e4f5c68032bb401a79c4aa412eb388d11d9561e11753b7ef22fd4283e31f6d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 108 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "6977": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "6978": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 105, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "6979": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 106, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "6980": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 107, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 107 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "6981": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7e4f5c68032bb401a79c4aa412eb388d11d9561e11753b7ef22fd4283e31f6d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 145, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 124, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_signer' in:" + ], + "start_col": 3, + "start_line": 108 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "6982": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7e4f5c68032bb401a79c4aa412eb388d11d9561e11753b7ef22fd4283e31f6d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 145, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 124, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_signer' in:" + ], + "start_col": 3, + "start_line": 108 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "6983": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7e4f5c68032bb401a79c4aa412eb388d11d9561e11753b7ef22fd4283e31f6d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 145, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 124, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_signer' in:" + ], + "start_col": 3, + "start_line": 108 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "6984": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7e4f5c68032bb401a79c4aa412eb388d11d9561e11753b7ef22fd4283e31f6d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 145, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 124, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_signer' in:" + ], + "start_col": 3, + "start_line": 108 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "6985": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7e4f5c68032bb401a79c4aa412eb388d11d9561e11753b7ef22fd4283e31f6d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 145, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 124, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_signer' in:" + ], + "start_col": 3, + "start_line": 108 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "6986": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7e4f5c68032bb401a79c4aa412eb388d11d9561e11753b7ef22fd4283e31f6d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 145, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 124, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_signer' in:" + ], + "start_col": 3, + "start_line": 108 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "6987": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7e4f5c68032bb401a79c4aa412eb388d11d9561e11753b7ef22fd4283e31f6d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 108, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 145, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 124, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_signer' in:" + ], + "start_col": 3, + "start_line": 108 + }, + "While handling calldata argument 'signer'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "6988": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + } + }, + "6990": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "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": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "6991": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "6993": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "6994": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "6995": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "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": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "6996": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "6997": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "6998": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/add_signer/a2b3007f78a4abae448ecb7f9272d598c40867c8e300c444e7a76d931286654f.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "6999": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/add_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 104, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7000": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 116, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 120, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 120 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 116 + } + }, + "7001": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 120, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 120 + } + }, + "7003": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 117, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 34, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 128 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 117 + } + }, + "7004": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 118, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 129, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 34, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 129 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 118 + } + }, + "7005": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 34, + "start_line": 122 + } + }, + "7007": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 37, + "start_line": 124 + } + }, + "7009": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 186, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 186 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 122 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 127 + } + }, + "7010": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 187 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 122 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 128 + } + }, + "7011": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 129, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 188 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 122 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 129 + } + }, + "7012": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 124 + }, + "While expanding the reference 'remove_index' in:" + ], + "start_col": 3, + "start_line": 119 + } + }, + "7013": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + } + }, + "7014": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + } + }, + "7015": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + } + }, + "7016": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + } + }, + "7017": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + } + }, + "7018": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + } + }, + "7019": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While expanding the reference 'added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + } + }, + "7020": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 37, + "start_line": 124 + } + }, + "7021": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 123 + } + }, + "7023": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 124, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 123 + } + }, + "7024": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/swap_signers/03099b3a3412dfc84134e65bc8d820ebea31b838a428db7368429e9c5e663ba5.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/swap_signers/03099b3a3412dfc84134e65bc8d820ebea31b838a428db7368429e9c5e663ba5.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7026": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/cb03049f16baf658a12148340f5c58b302db1daa4df59802c7b16fd0a4436af0.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 54, + "start_line": 119 + }, + "While handling return value 'signer_id'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7027": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/cb03049f16baf658a12148340f5c58b302db1daa4df59802c7b16fd0a4436af0.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/swap_signers/03099b3a3412dfc84134e65bc8d820ebea31b838a428db7368429e9c5e663ba5.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 54, + "start_line": 119 + }, + "While handling return value 'signer_id'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "7029": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/swap_signers/03099b3a3412dfc84134e65bc8d820ebea31b838a428db7368429e9c5e663ba5.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/swap_signers/03099b3a3412dfc84134e65bc8d820ebea31b838a428db7368429e9c5e663ba5.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 115 + }, + "While handling return value of" + ], + "start_col": 63, + "start_line": 1 + } + }, + "7030": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/swap_signers/03099b3a3412dfc84134e65bc8d820ebea31b838a428db7368429e9c5e663ba5.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7031": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/swap_signers/03099b3a3412dfc84134e65bc8d820ebea31b838a428db7368429e9c5e663ba5.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/swap_signers/03099b3a3412dfc84134e65bc8d820ebea31b838a428db7368429e9c5e663ba5.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "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": 115 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7032": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/swap_signers/03099b3a3412dfc84134e65bc8d820ebea31b838a428db7368429e9c5e663ba5.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7033": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/9952d40916ad57c0016d55b22fd981e657df5a1c275eca65a3ff028a2ac523a2.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 115 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 23, + "start_line": 119 + }, + "While handling calldata argument 'added_signer'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "7035": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7036": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 116, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 116 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7037": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 117, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 117 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7038": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 118, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7039": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b7575a248efa8d8ddc79c8f321c34c1754f8a22798fc799707b8db9c1ae06ea9.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 157, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 130, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_remove_index' in:" + ], + "start_col": 3, + "start_line": 119 + }, + "While handling calldata argument 'remove_index'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7040": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/9952d40916ad57c0016d55b22fd981e657df5a1c275eca65a3ff028a2ac523a2.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 199, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 172, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + }, + "While handling calldata argument 'added_signer'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7041": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/9952d40916ad57c0016d55b22fd981e657df5a1c275eca65a3ff028a2ac523a2.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 199, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 172, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + }, + "While handling calldata argument 'added_signer'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7042": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/9952d40916ad57c0016d55b22fd981e657df5a1c275eca65a3ff028a2ac523a2.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 199, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 172, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + }, + "While handling calldata argument 'added_signer'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7043": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/9952d40916ad57c0016d55b22fd981e657df5a1c275eca65a3ff028a2ac523a2.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 199, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 172, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + }, + "While handling calldata argument 'added_signer'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7044": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/9952d40916ad57c0016d55b22fd981e657df5a1c275eca65a3ff028a2ac523a2.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 199, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 172, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + }, + "While handling calldata argument 'added_signer'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7045": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/9952d40916ad57c0016d55b22fd981e657df5a1c275eca65a3ff028a2ac523a2.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 199, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 172, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + }, + "While handling calldata argument 'added_signer'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7046": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/9952d40916ad57c0016d55b22fd981e657df5a1c275eca65a3ff028a2ac523a2.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 199, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 172, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_added_signer' in:" + ], + "start_col": 23, + "start_line": 119 + }, + "While handling calldata argument 'added_signer'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7047": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + } + }, + "7049": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 86, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7050": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 102, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7052": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7053": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7054": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "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": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7055": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7056": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7057": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/19803c8e571f476a2305922c68e8f4b789f3d915e20d40fafd050c06334fb03b.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7058": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/swap_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 115, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 115 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7059": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 129, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 133, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 133 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 129 + } + }, + "7060": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 133, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 133 + } + }, + "7062": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 136, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 136 + } + }, + "7064": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 136, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 136 + } + }, + "7066": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 133, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 129, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 138, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 138 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 129 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 133 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + } + }, + "7067": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 130, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 130, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 138, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 138 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 130 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 130 + } + }, + "7068": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 131, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 131, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 138, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 138 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 131 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 131 + } + }, + "7069": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 138, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 138 + } + }, + "7070": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8442669a24c29ff6d5063db132f71e228356ef131c5c70fde623342799c14bb2.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 132, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 128 + }, + "While handling calldata of" + ], + "start_col": 35, + "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": 3, + "start_line": 132 + }, + "While handling calldata argument 'newPublicKey'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7072": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 128 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7073": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 129, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 128 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 129 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7074": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 130, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 128 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7075": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 131, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 128 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 131 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7076": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8442669a24c29ff6d5063db132f71e228356ef131c5c70fde623342799c14bb2.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 132, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 157, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 128 + }, + "While constructing the external wrapper for:" + ], + "start_col": 130, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_newPublicKey' in:" + ], + "start_col": 3, + "start_line": 132 + }, + "While handling calldata argument 'newPublicKey'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7077": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 128 + } + }, + "7079": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.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/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 128 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7081": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.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": 44, + "start_line": 1 + } + }, + "7082": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.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": 70, + "start_line": 1 + } + }, + "7083": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.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": 100, + "start_line": 1 + } + }, + "7084": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.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 + } + }, + "7085": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.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 + } + }, + "7087": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/f8713c73f8d22af1d0a9d32b90c808ff9a49c6ffa2faf2712a70740d1450c1be.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.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 + } + }, + "7088": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 128 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7089": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 143, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 147, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 147 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 143 + } + }, + "7090": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 147, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 147 + } + }, + "7092": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 144, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 232, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 149, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 149 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 232 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 144 + } + }, + "7093": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 145, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 233, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 149, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 149 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 233 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 145 + } + }, + "7094": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 146, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 149, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 149 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 3, + "start_line": 146 + } + }, + "7095": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 149, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 149 + } + }, + "7097": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 152, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 152 + } + }, + "7099": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 153, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 153 + } + }, + "7100": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 146, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 142 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 146 + }, + "While handling calldata argument 'index'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7102": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7103": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 143, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 143 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7104": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 144, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 144 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7105": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 145, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 145 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7106": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 146, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_index' in:" + ], + "start_col": 3, + "start_line": 146 + }, + "While handling calldata argument 'index'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "7107": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + } + }, + "7109": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "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/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7111": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7112": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7113": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "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": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7114": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7115": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "7117": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "7118": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 142, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 142 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7119": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 158, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 162, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 162 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 158 + } + }, + "7120": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 162, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 162 + } + }, + "7122": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 159, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 163, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 163 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 159 + } + }, + "7123": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 160, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 163, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 163 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 160 + } + }, + "7124": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 163, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 163 + } + }, + "7126": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 163, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 282, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 165, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 282 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 163 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "7127": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 163, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 283, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 165, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 163 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "7128": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 163, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 284, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 165, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 163 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "7129": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 161, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 165, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 36, + "start_line": 165 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 3, + "start_line": 161 + } + }, + "7130": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 163, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 165, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 43, + "start_line": 165 + }, + "While expanding the reference 'account_etd' in:" + ], + "start_col": 10, + "start_line": 163 + } + }, + "7131": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 165, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 165 + } + }, + "7133": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 166, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 166 + } + }, + "7134": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 161, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 157 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 161 + }, + "While handling calldata argument 'index'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7136": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7137": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 158, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7138": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 159, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 159 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7139": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 160, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 160 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7140": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 161, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_index' in:" + ], + "start_col": 3, + "start_line": 161 + }, + "While handling calldata argument 'index'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "7141": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + } + }, + "7143": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "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/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7145": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7146": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7147": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "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": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7148": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7149": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "7151": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/d45e32f6310a328680e1c60bb0c0f830b64456ab85d43868c5f84cb6316a488c.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "7152": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/remove_signer_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 157, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 157 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7153": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 171, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 175, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 175 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 171 + } + }, + "7154": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 175, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 175 + } + }, + "7156": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 172, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 177, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 177 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 172 + } + }, + "7157": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 173, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 177, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 177 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 331 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 173 + } + }, + "7158": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 174, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 177, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 47, + "start_line": 177 + }, + "While expanding the reference 'removed_signer_id' in:" + ], + "start_col": 3, + "start_line": 174 + } + }, + "7159": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 177, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 177 + } + }, + "7161": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 178, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 178 + } + }, + "7162": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/289b903068c37100bffaa762422f0398f600a74284e43aa43071cf8307ef93a2.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 174, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 170 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 174 + }, + "While handling calldata argument 'removed_signer_id'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7164": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7165": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 171, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7166": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 172, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 172 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7167": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 173, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 173 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7168": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/289b903068c37100bffaa762422f0398f600a74284e43aa43071cf8307ef93a2.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 174, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 167, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 135, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_removed_signer_id' in:" + ], + "start_col": 3, + "start_line": 174 + }, + "While handling calldata argument 'removed_signer_id'" + ], + "start_col": 40, + "start_line": 1 + } + }, + "7169": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + } + }, + "7171": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "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/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7173": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7174": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7175": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "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": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7176": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7177": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "7179": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/0ed513fe701277aa2924038718b356ad22321e0f735b322c88245e6cccb6468e.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "7180": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 170, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 170 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7181": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 183, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 264, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 187, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 187 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 183 + } + }, + "7182": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 184, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 187, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 187 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 265 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 184 + } + }, + "7183": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 185, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 187, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 187 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 266 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 185 + } + }, + "7184": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 187, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 187 + } + }, + "7186": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 189, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 44, + "start_line": 189 + } + }, + "7188": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 189, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 189 + } + }, + "7190": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 142, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 189, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 183, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 190, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 190 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 183 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 189 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 142 + } + }, + "7191": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 143, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 189, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 184, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 190, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 190 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 184 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 189 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 143 + } + }, + "7192": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 144, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 189, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 185, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 190, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 190 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 185 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 189 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 144 + } + }, + "7193": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 190, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 23, + "start_line": 190 + } + }, + "7194": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 190, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 190 + } + }, + "7195": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getPublicKey/3b684397f6604a19c1ca2d5c5582ea20120aa5ea9a960892c6c6ecfc1b12fe56.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getPublicKey/3b684397f6604a19c1ca2d5c5582ea20120aa5ea9a960892c6c6ecfc1b12fe56.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7197": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/2cf747b33fafe4b7e0f1cfb0079d61cecba83ef4f51af2d9bea36803bc3f4e9f.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 186, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 186 + }, + "While handling return value 'publicKey'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7198": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/2cf747b33fafe4b7e0f1cfb0079d61cecba83ef4f51af2d9bea36803bc3f4e9f.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 186, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getPublicKey/3b684397f6604a19c1ca2d5c5582ea20120aa5ea9a960892c6c6ecfc1b12fe56.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 9, + "start_line": 186 + }, + "While handling return value 'publicKey'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "7200": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getPublicKey/3b684397f6604a19c1ca2d5c5582ea20120aa5ea9a960892c6c6ecfc1b12fe56.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getPublicKey/3b684397f6604a19c1ca2d5c5582ea20120aa5ea9a960892c6c6ecfc1b12fe56.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While handling return value of" + ], + "start_col": 63, + "start_line": 1 + } + }, + "7201": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getPublicKey/3b684397f6604a19c1ca2d5c5582ea20120aa5ea9a960892c6c6ecfc1b12fe56.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7202": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getPublicKey/3b684397f6604a19c1ca2d5c5582ea20120aa5ea9a960892c6c6ecfc1b12fe56.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getPublicKey/3b684397f6604a19c1ca2d5c5582ea20120aa5ea9a960892c6c6ecfc1b12fe56.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "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": 182 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7203": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getPublicKey/3b684397f6604a19c1ca2d5c5582ea20120aa5ea9a960892c6c6ecfc1b12fe56.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7204": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7205": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 183, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7206": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 184, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 184 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7207": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 185, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 185 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7208": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + } + }, + "7210": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 86, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7211": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 102, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7213": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7214": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7215": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "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": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7216": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7217": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7218": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/43a9d1274d92c1a4aee1843a7b473645245807418483fb76dcc5c8cdf673e692.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7219": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getPublicKey/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7220": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_public_key" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 196, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 183, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 200, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 24, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 183 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 196 + } + }, + "7221": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_public_key" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 197, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 184, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 200, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 24, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 184 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 197 + } + }, + "7222": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_public_key" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 198, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 185, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 200, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 24, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 185 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 198 + } + }, + "7223": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_public_key" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 200, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 24, + "start_line": 200 + } + }, + "7225": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_public_key" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 201, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 201 + } + }, + "7226": { + "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/ed379cb96da5de591f6577d7ab0fb7b2d10d45df89d27194a22cb4bf5f2e7ef0.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_public_key/ed379cb96da5de591f6577d7ab0fb7b2d10d45df89d27194a22cb4bf5f2e7ef0.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7228": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_public_key_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 199, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 199 + }, + "While handling return value 'res'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7229": { + "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/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 199, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_public_key/ed379cb96da5de591f6577d7ab0fb7b2d10d45df89d27194a22cb4bf5f2e7ef0.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 9, + "start_line": 199 + }, + "While handling return value 'res'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "7231": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_public_key_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_public_key/ed379cb96da5de591f6577d7ab0fb7b2d10d45df89d27194a22cb4bf5f2e7ef0.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_public_key/ed379cb96da5de591f6577d7ab0fb7b2d10d45df89d27194a22cb4bf5f2e7ef0.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 195 + }, + "While handling return value of" + ], + "start_col": 59, + "start_line": 1 + } + }, + "7232": { + "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/ed379cb96da5de591f6577d7ab0fb7b2d10d45df89d27194a22cb4bf5f2e7ef0.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7233": { + "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/ed379cb96da5de591f6577d7ab0fb7b2d10d45df89d27194a22cb4bf5f2e7ef0.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_public_key/ed379cb96da5de591f6577d7ab0fb7b2d10d45df89d27194a22cb4bf5f2e7ef0.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "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": 195 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7234": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_public_key_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_public_key/ed379cb96da5de591f6577d7ab0fb7b2d10d45df89d27194a22cb4bf5f2e7ef0.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7235": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_public_key" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7236": { + "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/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 196, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_public_key/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 196 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7237": { + "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/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 197, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_public_key/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 197 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7238": { + "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/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 198, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_public_key/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7239": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_public_key" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + } + }, + "7241": { + "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/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 103, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_public_key/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "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": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7242": { + "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/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7244": { + "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/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_public_key/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7245": { + "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/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_public_key/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7246": { + "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/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_public_key/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "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": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7247": { + "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/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_public_key/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7248": { + "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/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_public_key/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7249": { + "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/2ff1b901a849c2700358897d196ff8a6f646c39ef6985746b76bb2d5d638bc52.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_public_key/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7250": { + "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/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 195, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 195 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7251": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signers"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 206, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 264, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 210, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 210 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 206 + } + }, + "7252": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signers"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 207, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 210, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 210 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 265 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 207 + } + }, + "7253": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signers"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 208, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 210, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 210 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 266 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 208 + } + }, + "7254": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signers"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 210, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 210 + } + }, + "7256": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signers"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 212, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 212 + } + }, + "7258": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signers"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 212, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 212 + } + }, + "7259": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_signers/cc640d8ea548d96a440607e96522d7d854b1dfbced5cdeece12d53b2fe2d3292.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_signers/cc640d8ea548d96a440607e96522d7d854b1dfbced5cdeece12d53b2fe2d3292.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7261": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/d1c875a8661952f175ca3071afcb144cd34daeabf262550fbe7da00eb06becf8.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 209 + }, + "While handling return value 'signers_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7262": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 28, + "start_line": 209 + }, + "While handling return value 'signers'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "7263": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 28, + "start_line": 209 + }, + "While handling return value 'signers'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "7265": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d1c875a8661952f175ca3071afcb144cd34daeabf262550fbe7da00eb06becf8.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 28, + "start_line": 209 + }, + "While handling return value 'signers'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 9, + "start_line": 209 + }, + "While handling return value 'signers_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "7267": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 28, + "start_line": 209 + }, + "While handling return value 'signers'" + ], + "start_col": 56, + "start_line": 10 + } + }, + "7269": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 28, + "start_line": 209 + }, + "While handling return value 'signers'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "7270": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d1c875a8661952f175ca3071afcb144cd34daeabf262550fbe7da00eb06becf8.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 28, + "start_line": 209 + }, + "While handling return value 'signers'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 28, + "start_line": 209 + }, + "While handling return value 'signers'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 9, + "start_line": 209 + }, + "While handling return value 'signers_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "7272": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 28, + "start_line": 209 + }, + "While handling return value 'signers'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "7273": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 28, + "start_line": 209 + }, + "While handling return value 'signers'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "7275": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 28, + "start_line": 209 + }, + "While handling return value 'signers'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "7277": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/18011dad2429bc9e07b6e015741180f074cc4fb41d78c7f6d8ada3007d469498.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 209, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_signers/cc640d8ea548d96a440607e96522d7d854b1dfbced5cdeece12d53b2fe2d3292.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 209 + }, + "While handling return value 'signers'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "7278": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_signers/cc640d8ea548d96a440607e96522d7d854b1dfbced5cdeece12d53b2fe2d3292.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7279": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_signers/cc640d8ea548d96a440607e96522d7d854b1dfbced5cdeece12d53b2fe2d3292.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_signers/cc640d8ea548d96a440607e96522d7d854b1dfbced5cdeece12d53b2fe2d3292.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "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": 205 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7280": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_signers/cc640d8ea548d96a440607e96522d7d854b1dfbced5cdeece12d53b2fe2d3292.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7281": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_signers/770afaddb5e105be61160c928ac04947393d311d6804577ad1cdc11c7a9aefed.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "7283": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7284": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 206, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7285": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 207, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 207 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7286": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 208, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 208 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7287": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + } + }, + "7289": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "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": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7290": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "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": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7291": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "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": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7292": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7294": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 205 + }, + "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": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7295": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 205 + }, + "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": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7296": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "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": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7297": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7298": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7299": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_signers/c71e0a6fd1e71206d8376342f05b27ff45cf970d949cf71ab668f84103ee9621.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7300": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signers/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 205, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 205 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7301": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 217, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 264, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 221, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 221 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 217 + } + }, + "7302": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 218, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 221, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 221 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 265 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 218 + } + }, + "7303": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 219, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 221, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 221 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 266 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 219 + } + }, + "7304": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 221, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 221 + } + }, + "7306": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 220, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 223, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 223 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 3, + "start_line": 220 + } + }, + "7307": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 223, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 223 + } + }, + "7309": { + "accessible_scopes": ["__main__", "__main__", "__main__.get_signer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 223, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 223 + } + }, + "7310": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_signer/f83631e226461bb8dab6ca17f165b2dda2114ea35ea990aa48920d3d6058cbb6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_signer/f83631e226461bb8dab6ca17f165b2dda2114ea35ea990aa48920d3d6058cbb6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7312": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/040c1a75a067ad9358bdfff06207e34ccb659e190eaf6546295e7c197db119e4.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 220, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 20, + "start_line": 220 + }, + "While handling return value 'signer'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7313": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/040c1a75a067ad9358bdfff06207e34ccb659e190eaf6546295e7c197db119e4.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 220, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 20, + "start_line": 220 + }, + "While handling return value 'signer'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "7314": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/040c1a75a067ad9358bdfff06207e34ccb659e190eaf6546295e7c197db119e4.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 220, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 20, + "start_line": 220 + }, + "While handling return value 'signer'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "7315": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/arg_processor/040c1a75a067ad9358bdfff06207e34ccb659e190eaf6546295e7c197db119e4.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 220, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 20, + "start_line": 220 + }, + "While handling return value 'signer'" + ], + "start_col": 1, + "start_line": 6 + } + }, + "7316": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/040c1a75a067ad9358bdfff06207e34ccb659e190eaf6546295e7c197db119e4.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 220, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 20, + "start_line": 220 + }, + "While handling return value 'signer'" + ], + "start_col": 1, + "start_line": 7 + } + }, + "7317": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/040c1a75a067ad9358bdfff06207e34ccb659e190eaf6546295e7c197db119e4.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 220, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 20, + "start_line": 220 + }, + "While handling return value 'signer'" + ], + "start_col": 1, + "start_line": 8 + } + }, + "7318": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/arg_processor/040c1a75a067ad9358bdfff06207e34ccb659e190eaf6546295e7c197db119e4.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 220, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 20, + "start_line": 220 + }, + "While handling return value 'signer'" + ], + "start_col": 1, + "start_line": 9 + } + }, + "7319": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/040c1a75a067ad9358bdfff06207e34ccb659e190eaf6546295e7c197db119e4.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 220, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_signer/f83631e226461bb8dab6ca17f165b2dda2114ea35ea990aa48920d3d6058cbb6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 20, + "start_line": 220 + }, + "While handling return value 'signer'" + ], + "start_col": 26, + "start_line": 10 + } + }, + "7321": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 100, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_signer/f83631e226461bb8dab6ca17f165b2dda2114ea35ea990aa48920d3d6058cbb6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_signer/f83631e226461bb8dab6ca17f165b2dda2114ea35ea990aa48920d3d6058cbb6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 216 + }, + "While handling return value of" + ], + "start_col": 85, + "start_line": 1 + } + }, + "7322": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_signer/f83631e226461bb8dab6ca17f165b2dda2114ea35ea990aa48920d3d6058cbb6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7323": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_signer/f83631e226461bb8dab6ca17f165b2dda2114ea35ea990aa48920d3d6058cbb6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_signer/f83631e226461bb8dab6ca17f165b2dda2114ea35ea990aa48920d3d6058cbb6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "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": 216 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7324": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_signer/f83631e226461bb8dab6ca17f165b2dda2114ea35ea990aa48920d3d6058cbb6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7325": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 220, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 216 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 220 + }, + "While handling calldata argument 'index'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7327": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7328": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 217, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 217 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7329": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 218, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 218 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7330": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 219, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 219 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7331": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 220, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_index' in:" + ], + "start_col": 3, + "start_line": 220 + }, + "While handling calldata argument 'index'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "7332": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + } + }, + "7334": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "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": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7335": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7337": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7338": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7339": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "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": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7340": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7341": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7342": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_signer/e86a313c5ad77a6e43610a8c9e7e1b63f2f20e2ab1635757ab13f6d008f5b22e.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7343": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_signer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 216, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 216 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7344": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 228, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 323, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 232, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 232 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 323 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 228 + } + }, + "7345": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 229, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 323, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 232, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 232 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 323 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 229 + } + }, + "7346": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 230, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 323, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 232, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 232 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 323 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 230 + } + }, + "7347": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 232, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 232 + } + }, + "7349": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 232, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 232 + } + }, + "7350": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_remove_signer_req/fcb83925dd6a58abdf318060237b8c313eb163508e5833b81d052cbb1307862a.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_remove_signer_req/fcb83925dd6a58abdf318060237b8c313eb163508e5833b81d052cbb1307862a.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7352": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/8bcfd714ee91d80b61c7813e505d15190aa71d6c8dea8afb2f1b3a6ecff8198a.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 231, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 231 + }, + "While handling return value 'deferred_request'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7353": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/8bcfd714ee91d80b61c7813e505d15190aa71d6c8dea8afb2f1b3a6ecff8198a.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 231, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 231 + }, + "While handling return value 'deferred_request'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "7354": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/8bcfd714ee91d80b61c7813e505d15190aa71d6c8dea8afb2f1b3a6ecff8198a.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 231, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_remove_signer_req/fcb83925dd6a58abdf318060237b8c313eb163508e5833b81d052cbb1307862a.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 9, + "start_line": 231 + }, + "While handling return value 'deferred_request'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "7356": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 146, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_remove_signer_req/fcb83925dd6a58abdf318060237b8c313eb163508e5833b81d052cbb1307862a.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_remove_signer_req/fcb83925dd6a58abdf318060237b8c313eb163508e5833b81d052cbb1307862a.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While handling return value of" + ], + "start_col": 131, + "start_line": 1 + } + }, + "7357": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_remove_signer_req/fcb83925dd6a58abdf318060237b8c313eb163508e5833b81d052cbb1307862a.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7358": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_remove_signer_req/fcb83925dd6a58abdf318060237b8c313eb163508e5833b81d052cbb1307862a.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_remove_signer_req/fcb83925dd6a58abdf318060237b8c313eb163508e5833b81d052cbb1307862a.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "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": 227 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7359": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_remove_signer_req/fcb83925dd6a58abdf318060237b8c313eb163508e5833b81d052cbb1307862a.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7360": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7361": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 228, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 228 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7362": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 229, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 229 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7363": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 230, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7364": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + } + }, + "7366": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 119, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 104, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7367": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 120, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7369": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7370": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7371": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "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": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7372": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7373": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7374": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/7c8027b75ae8caa3835f5f22d8adfb87e6158af0bde1ab14bbea6e175be1e507.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7375": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_remove_signer_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 227, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7376": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 237, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 264, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 241, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 241 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 237 + } + }, + "7377": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 238, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 241, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 241 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 265 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 238 + } + }, + "7378": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 239, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 241, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 241 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 266 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 239 + } + }, + "7379": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 241, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 241 + } + }, + "7381": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 243, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 243 + } + }, + "7383": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 243, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 243 + } + }, + "7384": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_execution_time_delay/88acf93486edaae4c7611b9a2ec6183cbbe7a77b8e5df612514739bdf84703e0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_execution_time_delay/88acf93486edaae4c7611b9a2ec6183cbbe7a77b8e5df612514739bdf84703e0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7386": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/a4d65885d59190e61919a5d14684d640e682c52c8bcb7af6cd1a3838fe034562.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 240, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 240 + }, + "While handling return value 'etd_sec'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7387": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/a4d65885d59190e61919a5d14684d640e682c52c8bcb7af6cd1a3838fe034562.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 240, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_execution_time_delay/88acf93486edaae4c7611b9a2ec6183cbbe7a77b8e5df612514739bdf84703e0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 9, + "start_line": 240 + }, + "While handling return value 'etd_sec'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "7389": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_execution_time_delay/88acf93486edaae4c7611b9a2ec6183cbbe7a77b8e5df612514739bdf84703e0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_execution_time_delay/88acf93486edaae4c7611b9a2ec6183cbbe7a77b8e5df612514739bdf84703e0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 236 + }, + "While handling return value of" + ], + "start_col": 73, + "start_line": 1 + } + }, + "7390": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_execution_time_delay/88acf93486edaae4c7611b9a2ec6183cbbe7a77b8e5df612514739bdf84703e0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7391": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_execution_time_delay/88acf93486edaae4c7611b9a2ec6183cbbe7a77b8e5df612514739bdf84703e0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_execution_time_delay/88acf93486edaae4c7611b9a2ec6183cbbe7a77b8e5df612514739bdf84703e0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "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": 236 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7392": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_execution_time_delay/88acf93486edaae4c7611b9a2ec6183cbbe7a77b8e5df612514739bdf84703e0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7393": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7394": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 237, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 237 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7395": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 238, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 238 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7396": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 239, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7397": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + } + }, + "7399": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 113, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 98, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7400": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 114, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7402": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7403": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7404": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "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": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7405": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7406": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7407": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/f47cc803bb5c969d699a3594342368773c44d497414d6f896586f9854349b5ed.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7408": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_execution_time_delay/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 236, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 236 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7409": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 249, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 263, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 257, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 21, + "start_line": 257 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 263 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 249 + } + }, + "7410": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 250, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 264, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 257, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 21, + "start_line": 257 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 250 + } + }, + "7411": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 251, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 265, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 257, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 21, + "start_line": 257 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 265 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 251 + } + }, + "7412": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 252, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 266, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 257, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 21, + "start_line": 257 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 266 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 252 + } + }, + "7413": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 254, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 257, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 38, + "start_line": 257 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 5, + "start_line": 254 + } + }, + "7414": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 257, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 44, + "start_line": 257 + }, + "While expanding the reference 'signature_len' in:" + ], + "start_col": 5, + "start_line": 255 + } + }, + "7415": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 257, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 59, + "start_line": 257 + }, + "While expanding the reference 'signature' in:" + ], + "start_col": 26, + "start_line": 255 + } + }, + "7416": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 257, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 21, + "start_line": 257 + } + }, + "7418": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 258, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 258 + } + }, + "7419": { + "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/ec8a9039a7d2a620956afa7c71e53a3fd58f82e0018be06c207933cd1bc8eac4.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/is_valid_signature/ec8a9039a7d2a620956afa7c71e53a3fd58f82e0018be06c207933cd1bc8eac4.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7421": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_valid_signature_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/88572df7240e94cd487c9258689a098ed6207c80c1adc8922a76a43fda1f9613.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 256, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 7, + "start_line": 256 + }, + "While handling return value 'is_valid'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7422": { + "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/88572df7240e94cd487c9258689a098ed6207c80c1adc8922a76a43fda1f9613.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 256, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/is_valid_signature/ec8a9039a7d2a620956afa7c71e53a3fd58f82e0018be06c207933cd1bc8eac4.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 256 + }, + "While handling return value 'is_valid'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "7424": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_valid_signature_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/is_valid_signature/ec8a9039a7d2a620956afa7c71e53a3fd58f82e0018be06c207933cd1bc8eac4.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/is_valid_signature/ec8a9039a7d2a620956afa7c71e53a3fd58f82e0018be06c207933cd1bc8eac4.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 248 + }, + "While handling return value of" + ], + "start_col": 68, + "start_line": 1 + } + }, + "7425": { + "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/ec8a9039a7d2a620956afa7c71e53a3fd58f82e0018be06c207933cd1bc8eac4.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7426": { + "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/ec8a9039a7d2a620956afa7c71e53a3fd58f82e0018be06c207933cd1bc8eac4.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/is_valid_signature/ec8a9039a7d2a620956afa7c71e53a3fd58f82e0018be06c207933cd1bc8eac4.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "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": 248 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7427": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_valid_signature_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/is_valid_signature/ec8a9039a7d2a620956afa7c71e53a3fd58f82e0018be06c207933cd1bc8eac4.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7428": { + "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/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 252, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 255 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 252 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7429": { + "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/1e685535e26ead7c7414f5feeeb2e28bc52d93f40700caef24a3ce3ebdd87114.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 255 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_signature_len' in:" + ], + "start_col": 5, + "start_line": 255 + }, + "While handling calldata argument 'signature_len'" + ], + "start_col": 36, + "start_line": 1 + } + }, + "7430": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 255 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "7431": { + "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/1e685535e26ead7c7414f5feeeb2e28bc52d93f40700caef24a3ce3ebdd87114.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 255 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 255 + }, + "While handling calldata argument 'signature_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7433": { + "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/1e685535e26ead7c7414f5feeeb2e28bc52d93f40700caef24a3ce3ebdd87114.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 255 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_signature_len' in:" + ], + "start_col": 5, + "start_line": 255 + }, + "While handling calldata argument 'signature_len'" + ], + "start_col": 36, + "start_line": 1 + } + }, + "7434": { + "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/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 255 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "7435": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7436": { + "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/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 252, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 255 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 252 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7437": { + "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/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 249, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 249 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7438": { + "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/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 250, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 250 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7439": { + "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/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 251, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 103, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 94, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 251 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7440": { + "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/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 255 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "7442": { + "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/b07888c526f97925bd7037f4dcde235d5ffb2d92354828348c217678c2166713.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 254, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 162, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 143, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_hash' in:" + ], + "start_col": 5, + "start_line": 254 + }, + "While handling calldata argument 'hash'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "7443": { + "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/1e685535e26ead7c7414f5feeeb2e28bc52d93f40700caef24a3ce3ebdd87114.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 206, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 178, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_signature_len' in:" + ], + "start_col": 5, + "start_line": 255 + }, + "While handling calldata argument 'signature_len'" + ], + "start_col": 36, + "start_line": 1 + } + }, + "7444": { + "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/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 255, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 242, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 218, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_signature' in:" + ], + "start_col": 26, + "start_line": 255 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 32, + "start_line": 5 + } + }, + "7446": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + } + }, + "7448": { + "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/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "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": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + } + }, + "7449": { + "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/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7451": { + "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/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7452": { + "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/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7453": { + "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/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "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": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7454": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_valid_signature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 103, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 94, + "start_line": 1 + } + }, + "7455": { + "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/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7456": { + "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/7f98ad0ec0793e75847c1824883a05a054951b350e35dcef66fb20dd554553f9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_valid_signature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7457": { + "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/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 248, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 248 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7458": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 263, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 264, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 271, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 271 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 263 + } + }, + "7459": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 264, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 271, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 271 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 265 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 264 + } + }, + "7460": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 266, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 271, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 271 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 266 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 266 + } + }, + "7461": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 271, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 271 + } + }, + "7463": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 265, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 275, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 273 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 265 + } + }, + "7464": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 268, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 274, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 274 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 5, + "start_line": 268 + } + }, + "7465": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 274, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 15, + "start_line": 274 + }, + "While expanding the reference 'signature_len' in:" + ], + "start_col": 5, + "start_line": 269 + } + }, + "7466": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 274, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 30, + "start_line": 274 + }, + "While expanding the reference 'signature' in:" + ], + "start_col": 26, + "start_line": 269 + } + }, + "7467": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 275, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 273 + } + }, + "7469": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 526, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 275, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 263, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 276, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 276 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 263 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 273 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 526 + } + }, + "7470": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 275, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 264, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 276, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 276 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 273 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 527 + } + }, + "7471": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 275, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 265, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 276, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 276 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 265 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 27, + "start_line": 273 + }, + "While trying to update the implicit return value 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + } + }, + "7472": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 275, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 266, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 276, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 276 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 266 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 273 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 528 + } + }, + "7473": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 273, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 276, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 21, + "start_line": 276 + }, + "While expanding the reference 'isValid' in:" + ], + "start_col": 10, + "start_line": 273 + } + }, + "7474": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 276, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 276 + } + }, + "7475": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/isValidSignature/788c6a8b6b18c5871daf6f002535597a864dc3acd6177843eee7ab2e36e975c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/isValidSignature/788c6a8b6b18c5871daf6f002535597a864dc3acd6177843eee7ab2e36e975c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7477": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/81481b77e98c23bf09409bf36feae804b99043d0f280564ccb359aeee5de8778.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 270, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 7, + "start_line": 270 + }, + "While handling return value 'isValid'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7478": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/81481b77e98c23bf09409bf36feae804b99043d0f280564ccb359aeee5de8778.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 270, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/isValidSignature/788c6a8b6b18c5871daf6f002535597a864dc3acd6177843eee7ab2e36e975c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 270 + }, + "While handling return value 'isValid'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "7480": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/isValidSignature/788c6a8b6b18c5871daf6f002535597a864dc3acd6177843eee7ab2e36e975c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/isValidSignature/788c6a8b6b18c5871daf6f002535597a864dc3acd6177843eee7ab2e36e975c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 262 + }, + "While handling return value of" + ], + "start_col": 65, + "start_line": 1 + } + }, + "7481": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/isValidSignature/788c6a8b6b18c5871daf6f002535597a864dc3acd6177843eee7ab2e36e975c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7482": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/isValidSignature/788c6a8b6b18c5871daf6f002535597a864dc3acd6177843eee7ab2e36e975c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/isValidSignature/788c6a8b6b18c5871daf6f002535597a864dc3acd6177843eee7ab2e36e975c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "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": 262 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7483": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/isValidSignature/788c6a8b6b18c5871daf6f002535597a864dc3acd6177843eee7ab2e36e975c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7484": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 266, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 269 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 266 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7485": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1e685535e26ead7c7414f5feeeb2e28bc52d93f40700caef24a3ce3ebdd87114.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 269 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_signature_len' in:" + ], + "start_col": 5, + "start_line": 269 + }, + "While handling calldata argument 'signature_len'" + ], + "start_col": 36, + "start_line": 1 + } + }, + "7486": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 269 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "7487": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/1e685535e26ead7c7414f5feeeb2e28bc52d93f40700caef24a3ce3ebdd87114.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 269 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 269 + }, + "While handling calldata argument 'signature_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7489": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1e685535e26ead7c7414f5feeeb2e28bc52d93f40700caef24a3ce3ebdd87114.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 269 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_signature_len' in:" + ], + "start_col": 5, + "start_line": 269 + }, + "While handling calldata argument 'signature_len'" + ], + "start_col": 36, + "start_line": 1 + } + }, + "7490": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 26, + "start_line": 269 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "7491": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7492": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 266, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 269 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 266 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7493": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 263, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 263 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7494": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 264, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 264 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7495": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 112, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 265, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 103, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 94, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 265 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7496": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 269 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "7498": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b07888c526f97925bd7037f4dcde235d5ffb2d92354828348c217678c2166713.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 268, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 162, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 143, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_hash' in:" + ], + "start_col": 5, + "start_line": 268 + }, + "While handling calldata argument 'hash'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "7499": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1e685535e26ead7c7414f5feeeb2e28bc52d93f40700caef24a3ce3ebdd87114.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 206, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 178, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_signature_len' in:" + ], + "start_col": 5, + "start_line": 269 + }, + "While handling calldata argument 'signature_len'" + ], + "start_col": 36, + "start_line": 1 + } + }, + "7500": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dcade045a914a94bd6d8ab9c7927a671c36ad8cecedb9f9ea763d7da696f3ef.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 269, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 242, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 218, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_signature' in:" + ], + "start_col": 26, + "start_line": 269 + }, + "While handling calldata argument 'signature'" + ], + "start_col": 32, + "start_line": 5 + } + }, + "7502": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + } + }, + "7504": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 105, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 90, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + } + }, + "7505": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7507": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7508": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7509": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "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": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7510": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 103, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 94, + "start_line": 1 + } + }, + "7511": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7512": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/dc25ac1b979358bf96523ef3405d0b0d9c7820971d203cff2e2c75e545e055cc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7513": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isValidSignature/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 262, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 262 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7514": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 283, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 127, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 287, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 34, + "start_line": 287 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 127 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 283 + } + }, + "7515": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 284, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 128, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 287, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 34, + "start_line": 287 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 128 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 284 + } + }, + "7516": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 285, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 129, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 287, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 34, + "start_line": 287 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 129 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 285 + } + }, + "7517": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 287, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 34, + "start_line": 287 + } + }, + "7519": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 288, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 288 + } + }, + "7520": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_multisig/19fcfdf9eb787f71849bb6933802c0cd8381360134d1b776a07a45ba0f9a63d7.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_multisig/19fcfdf9eb787f71849bb6933802c0cd8381360134d1b776a07a45ba0f9a63d7.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7522": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/19e653c0ea9d1ffa94c0fc1aa745c0bd8e37c5f8ab1d0e735a2c5c3f37a3dc97.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 286, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 10, + "start_line": 286 + }, + "While handling return value 'multisig_num_signers'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7523": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/19e653c0ea9d1ffa94c0fc1aa745c0bd8e37c5f8ab1d0e735a2c5c3f37a3dc97.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 286, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_multisig/19fcfdf9eb787f71849bb6933802c0cd8381360134d1b776a07a45ba0f9a63d7.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 10, + "start_line": 286 + }, + "While handling return value 'multisig_num_signers'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "7525": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_multisig/19fcfdf9eb787f71849bb6933802c0cd8381360134d1b776a07a45ba0f9a63d7.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_multisig/19fcfdf9eb787f71849bb6933802c0cd8381360134d1b776a07a45ba0f9a63d7.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 282 + }, + "While handling return value of" + ], + "start_col": 74, + "start_line": 1 + } + }, + "7526": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_multisig/19fcfdf9eb787f71849bb6933802c0cd8381360134d1b776a07a45ba0f9a63d7.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7527": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_multisig/19fcfdf9eb787f71849bb6933802c0cd8381360134d1b776a07a45ba0f9a63d7.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_multisig/19fcfdf9eb787f71849bb6933802c0cd8381360134d1b776a07a45ba0f9a63d7.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "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": 282 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7528": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_multisig/19fcfdf9eb787f71849bb6933802c0cd8381360134d1b776a07a45ba0f9a63d7.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7529": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7530": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 283, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 283 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7531": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 284, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 284 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7532": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 285, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 285 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7533": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + } + }, + "7535": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 86, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7536": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 102, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7538": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7539": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7540": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "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": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7541": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7542": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7543": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/11280e0b2365d1ae1aaccb2a34f0274050df83a3743b379d0a573f1424b5d3df.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7544": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 282, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 282 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7545": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 294, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 294 + } + }, + "7546": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 298 + } + }, + "7548": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 295, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 300, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 33, + "start_line": 300 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 295 + } + }, + "7549": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 296, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 300, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 33, + "start_line": 300 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 296 + } + }, + "7550": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 300, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 33, + "start_line": 300 + } + }, + "7552": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 300, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 102, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 301, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 301 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 102 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 300 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "7553": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 300, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 103, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 301, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 301 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 103 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 300 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "7554": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 300, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 104, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 301, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 301 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 104 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 300 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "7555": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 297, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 301, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 301 + }, + "While expanding the reference 'num_signers' in:" + ], + "start_col": 4, + "start_line": 297 + } + }, + "7556": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 300, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 301, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 40, + "start_line": 301 + }, + "While expanding the reference 'num_account_signers' in:" + ], + "start_col": 10, + "start_line": 300 + } + }, + "7557": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 301, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 301 + } + }, + "7559": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 302, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 302 + } + }, + "7560": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4ed99c1404299fecfc6921a59fa59a26a0dfb1022ca32b0708063148e631d226.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 297, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 293 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 4, + "start_line": 297 + }, + "While handling calldata argument 'num_signers'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7562": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7563": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 294, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 294 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7564": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 295, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 295 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7565": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 296, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 296 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7566": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/4ed99c1404299fecfc6921a59fa59a26a0dfb1022ca32b0708063148e631d226.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 297, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 155, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 129, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_num_signers' in:" + ], + "start_col": 4, + "start_line": 297 + }, + "While handling calldata argument 'num_signers'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "7567": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + } + }, + "7569": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "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_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7571": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7572": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7573": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "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": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7574": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7575": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "7577": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/579e48bd5dc73be26036588e6bfef670bdf9a6465ed256b440ec4eede7359dd3.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "7578": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 293, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 293 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7579": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 307, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 186, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 311, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 42, + "start_line": 311 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 186 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 307 + } + }, + "7580": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 308, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 311, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 42, + "start_line": 311 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 187 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 308 + } + }, + "7581": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 309, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 188, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 311, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 42, + "start_line": 311 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 188 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 309 + } + }, + "7582": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 311, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 42, + "start_line": 311 + } + }, + "7584": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 312, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 312 + } + }, + "7585": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_pending_multisig_transaction/2830f97ccd4a7c7b43d472cfd1d7ec2ad98be60e2305fabc7f81d48a53c6e9aa.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_pending_multisig_transaction/2830f97ccd4a7c7b43d472cfd1d7ec2ad98be60e2305fabc7f81d48a53c6e9aa.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7587": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/0ffc865b197966539399fa26baf449cc54e0623dfa6e34c5df6a0923cd38120c.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 310, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 10, + "start_line": 310 + }, + "While handling return value 'pending_multisig_transaction'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7588": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/0ffc865b197966539399fa26baf449cc54e0623dfa6e34c5df6a0923cd38120c.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 310, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 10, + "start_line": 310 + }, + "While handling return value 'pending_multisig_transaction'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "7589": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/0ffc865b197966539399fa26baf449cc54e0623dfa6e34c5df6a0923cd38120c.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 310, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 10, + "start_line": 310 + }, + "While handling return value 'pending_multisig_transaction'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "7590": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/arg_processor/0ffc865b197966539399fa26baf449cc54e0623dfa6e34c5df6a0923cd38120c.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 310, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 10, + "start_line": 310 + }, + "While handling return value 'pending_multisig_transaction'" + ], + "start_col": 1, + "start_line": 6 + } + }, + "7591": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/0ffc865b197966539399fa26baf449cc54e0623dfa6e34c5df6a0923cd38120c.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 310, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 10, + "start_line": 310 + }, + "While handling return value 'pending_multisig_transaction'" + ], + "start_col": 1, + "start_line": 7 + } + }, + "7592": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/0ffc865b197966539399fa26baf449cc54e0623dfa6e34c5df6a0923cd38120c.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 310, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_pending_multisig_transaction/2830f97ccd4a7c7b43d472cfd1d7ec2ad98be60e2305fabc7f81d48a53c6e9aa.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 10, + "start_line": 310 + }, + "While handling return value 'pending_multisig_transaction'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "7594": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 160, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_pending_multisig_transaction/2830f97ccd4a7c7b43d472cfd1d7ec2ad98be60e2305fabc7f81d48a53c6e9aa.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_pending_multisig_transaction/2830f97ccd4a7c7b43d472cfd1d7ec2ad98be60e2305fabc7f81d48a53c6e9aa.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 306 + }, + "While handling return value of" + ], + "start_col": 145, + "start_line": 1 + } + }, + "7595": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_pending_multisig_transaction/2830f97ccd4a7c7b43d472cfd1d7ec2ad98be60e2305fabc7f81d48a53c6e9aa.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7596": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_pending_multisig_transaction/2830f97ccd4a7c7b43d472cfd1d7ec2ad98be60e2305fabc7f81d48a53c6e9aa.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_pending_multisig_transaction/2830f97ccd4a7c7b43d472cfd1d7ec2ad98be60e2305fabc7f81d48a53c6e9aa.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "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": 306 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7597": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_pending_multisig_transaction/2830f97ccd4a7c7b43d472cfd1d7ec2ad98be60e2305fabc7f81d48a53c6e9aa.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7598": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7599": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 307, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 307 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7600": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 308, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7601": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 309, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7602": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + } + }, + "7604": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 121, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 106, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7605": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 122, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7607": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7608": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7609": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "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": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7610": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7611": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7612": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/ecd3c3790d1debc9e306dd71dd646f311892c810d3bda5a8629e3baaae6b4691.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7613": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 306, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 306 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7614": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 317, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 326, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 326 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 317 + } + }, + "7615": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 326, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 326 + } + }, + "7617": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 318, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 197, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 331, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 328 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 197 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 318 + } + }, + "7618": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 319, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 198, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 331, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 328 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 198 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 319 + } + }, + "7619": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 329, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 329 + }, + "While expanding the reference 'pending_calldata_len' in:" + ], + "start_col": 5, + "start_line": 321 + } + }, + "7620": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 329, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 329 + }, + "While expanding the reference 'pending_calldata' in:" + ], + "start_col": 33, + "start_line": 321 + } + }, + "7621": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 322, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 330, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 330 + }, + "While expanding the reference 'pending_nonce' in:" + ], + "start_col": 5, + "start_line": 322 + } + }, + "7622": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 323, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 330, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 24, + "start_line": 330 + }, + "While expanding the reference 'pending_max_fee' in:" + ], + "start_col": 5, + "start_line": 323 + } + }, + "7623": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 324, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 330, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 41, + "start_line": 330 + }, + "While expanding the reference 'pending_transaction_version' in:" + ], + "start_col": 5, + "start_line": 324 + } + }, + "7624": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 331, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 328 + } + }, + "7626": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 331, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 328 + } + }, + "7627": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/sign_pending_multisig_transaction/1b39d02cdf8b50a974cbe566dafb13c4d23ac1f45b77f6a1cad040a202b56e0b.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/sign_pending_multisig_transaction/1b39d02cdf8b50a974cbe566dafb13c4d23ac1f45b77f6a1cad040a202b56e0b.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7629": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c2f1fff90123af1ac991a5f7ea9000b626c118903b694b399e02806d44fb5def.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 7, + "start_line": 325 + }, + "While handling return value 'response_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7630": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 325 + }, + "While handling return value 'response'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "7631": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 325 + }, + "While handling return value 'response'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "7633": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c2f1fff90123af1ac991a5f7ea9000b626c118903b694b399e02806d44fb5def.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 325 + }, + "While handling return value 'response'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 325 + }, + "While handling return value 'response_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "7635": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 325 + }, + "While handling return value 'response'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "7636": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c2f1fff90123af1ac991a5f7ea9000b626c118903b694b399e02806d44fb5def.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 325 + }, + "While handling return value 'response'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 27, + "start_line": 325 + }, + "While handling return value 'response'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 325 + }, + "While handling return value 'response_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "7638": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 325 + }, + "While handling return value 'response'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "7639": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 325 + }, + "While handling return value 'response'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "7640": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 325 + }, + "While handling return value 'response'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "7642": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 325, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/sign_pending_multisig_transaction/1b39d02cdf8b50a974cbe566dafb13c4d23ac1f45b77f6a1cad040a202b56e0b.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 325 + }, + "While handling return value 'response'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "7643": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/sign_pending_multisig_transaction/1b39d02cdf8b50a974cbe566dafb13c4d23ac1f45b77f6a1cad040a202b56e0b.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7644": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/sign_pending_multisig_transaction/1b39d02cdf8b50a974cbe566dafb13c4d23ac1f45b77f6a1cad040a202b56e0b.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/sign_pending_multisig_transaction/1b39d02cdf8b50a974cbe566dafb13c4d23ac1f45b77f6a1cad040a202b56e0b.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "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": 316 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7645": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/sign_pending_multisig_transaction/1b39d02cdf8b50a974cbe566dafb13c4d23ac1f45b77f6a1cad040a202b56e0b.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7646": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/9b9dcdad6b9f8914336250ac7874067b3d8741f80858ea9aea1a6008cef3fa8f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "7648": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 319, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4c9cfae2d805caad788858109f7917946f7591d919871b715f9c75f50dc558cf.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 33, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 319 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7649": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/81c34a0e7357f3cf9d970047a3024f5f555ab96c43f3a0a1d1a9cf66f1fa9387.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4c9cfae2d805caad788858109f7917946f7591d919871b715f9c75f50dc558cf.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 33, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_pending_calldata_len' in:" + ], + "start_col": 5, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata_len'" + ], + "start_col": 43, + "start_line": 1 + } + }, + "7650": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4c9cfae2d805caad788858109f7917946f7591d919871b715f9c75f50dc558cf.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 33, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "7651": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/81c34a0e7357f3cf9d970047a3024f5f555ab96c43f3a0a1d1a9cf66f1fa9387.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/4c9cfae2d805caad788858109f7917946f7591d919871b715f9c75f50dc558cf.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 33, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7653": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/81c34a0e7357f3cf9d970047a3024f5f555ab96c43f3a0a1d1a9cf66f1fa9387.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/4c9cfae2d805caad788858109f7917946f7591d919871b715f9c75f50dc558cf.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 33, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_pending_calldata_len' in:" + ], + "start_col": 5, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata_len'" + ], + "start_col": 43, + "start_line": 1 + } + }, + "7654": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/4c9cfae2d805caad788858109f7917946f7591d919871b715f9c75f50dc558cf.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 33, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "7655": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/af963d40fa951dd6f2d8ef1251d18ae5a87525676e4d942d0ae1695f0ca50da2.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 324, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 316 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 324 + }, + "While handling calldata argument 'pending_transaction_version'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7657": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7658": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 319, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/4c9cfae2d805caad788858109f7917946f7591d919871b715f9c75f50dc558cf.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 319 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7659": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 317, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 317 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7660": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 318, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 318 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7661": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/4c9cfae2d805caad788858109f7917946f7591d919871b715f9c75f50dc558cf.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "7663": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/81c34a0e7357f3cf9d970047a3024f5f555ab96c43f3a0a1d1a9cf66f1fa9387.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 173, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 138, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_pending_calldata_len' in:" + ], + "start_col": 5, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata_len'" + ], + "start_col": 43, + "start_line": 1 + } + }, + "7664": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/4c9cfae2d805caad788858109f7917946f7591d919871b715f9c75f50dc558cf.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 321, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 223, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 192, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_pending_calldata' in:" + ], + "start_col": 33, + "start_line": 321 + }, + "While handling calldata argument 'pending_calldata'" + ], + "start_col": 39, + "start_line": 5 + } + }, + "7666": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/89e68eb972ea52576ec6f4fe6eb36904594333061ce4c3acd5b4268cdcd8e605.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 322, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 267, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 239, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_pending_nonce' in:" + ], + "start_col": 5, + "start_line": 322 + }, + "While handling calldata argument 'pending_nonce'" + ], + "start_col": 36, + "start_line": 1 + } + }, + "7667": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/a94dda29e6155c8428e55e4b0656b473b2ccbbae6920c522f37e0c86809abb87.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 323, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 315, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 285, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_pending_max_fee' in:" + ], + "start_col": 5, + "start_line": 323 + }, + "While handling calldata argument 'pending_max_fee'" + ], + "start_col": 38, + "start_line": 1 + } + }, + "7668": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/af963d40fa951dd6f2d8ef1251d18ae5a87525676e4d942d0ae1695f0ca50da2.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 324, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 387, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 345, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_pending_transaction_version' in:" + ], + "start_col": 5, + "start_line": 324 + }, + "While handling calldata argument 'pending_transaction_version'" + ], + "start_col": 50, + "start_line": 1 + } + }, + "7669": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + } + }, + "7671": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "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": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7672": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "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": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7673": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 122, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 107, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7674": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 123, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7676": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 316 + }, + "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": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7677": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 316 + }, + "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": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7678": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "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": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7679": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7680": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7681": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/1f9d3d453564dd19edb41184220b78238ddd5c2418ab3b167008874610df5596.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7682": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sign_pending_multisig_transaction/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 316, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 316 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7683": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 336, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 340, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 340 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 336 + } + }, + "7684": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 340, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 340 + } + }, + "7686": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 337, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 342, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 342 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 337 + } + }, + "7687": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 338, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 332, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 342, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 342 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 332 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 338 + } + }, + "7688": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 342, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 342 + } + }, + "7690": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 342, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 342 + } + }, + "7691": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7692": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 336, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 336 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7693": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 337, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7694": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 338, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 338 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7695": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + } + }, + "7697": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "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/disable_multisig/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7699": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7700": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7701": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "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": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7702": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7703": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "7705": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "7706": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 335, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 335 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7707": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 347, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 351, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 347 + } + }, + "7708": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 351, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 351 + } + }, + "7710": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 348, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 353, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 353 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 348 + } + }, + "7711": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 349, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_execution_time_delay_sec/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 353, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 353 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 349 + } + }, + "7712": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 353, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 353 + } + }, + "7714": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 354, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 354 + } + }, + "7716": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 354, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "7717": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7718": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 347, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 347 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7719": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 348, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 348 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7720": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 349, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 349 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7721": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + } + }, + "7723": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "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/disable_multisig_with_etd/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7725": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7726": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7727": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "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": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7728": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7729": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "7731": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "7732": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/disable_multisig_with_etd/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 346, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 346 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7733": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 359, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 388, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 363, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 363 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 388 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 359 + } + }, + "7734": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 360, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 389, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 363, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 363 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 389 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 360 + } + }, + "7735": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 361, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 363, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 363 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 390 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 361 + } + }, + "7736": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 363, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 363 + } + }, + "7738": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 363, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 363 + } + }, + "7739": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_disable_multisig_req/050b89ad40b8d5b7d4c7ecec1d1b317683ee783a1f08021b587bb3834b1bb499.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_disable_multisig_req/050b89ad40b8d5b7d4c7ecec1d1b317683ee783a1f08021b587bb3834b1bb499.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "7741": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/96869a0c58eb53e4b63493bbbd6a162dc4c73facf3cd4d42f20eed0fa34e314c.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 362, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 362 + }, + "While handling return value 'deferred_request'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7742": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/96869a0c58eb53e4b63493bbbd6a162dc4c73facf3cd4d42f20eed0fa34e314c.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 362, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_disable_multisig_req/050b89ad40b8d5b7d4c7ecec1d1b317683ee783a1f08021b587bb3834b1bb499.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 9, + "start_line": 362 + }, + "While handling return value 'deferred_request'" + ], + "start_col": 26, + "start_line": 4 + } + }, + "7744": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 153, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_disable_multisig_req/050b89ad40b8d5b7d4c7ecec1d1b317683ee783a1f08021b587bb3834b1bb499.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_disable_multisig_req/050b89ad40b8d5b7d4c7ecec1d1b317683ee783a1f08021b587bb3834b1bb499.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 358 + }, + "While handling return value of" + ], + "start_col": 138, + "start_line": 1 + } + }, + "7745": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_disable_multisig_req/050b89ad40b8d5b7d4c7ecec1d1b317683ee783a1f08021b587bb3834b1bb499.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "7746": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_disable_multisig_req/050b89ad40b8d5b7d4c7ecec1d1b317683ee783a1f08021b587bb3834b1bb499.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_disable_multisig_req/050b89ad40b8d5b7d4c7ecec1d1b317683ee783a1f08021b587bb3834b1bb499.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "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": 358 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "7747": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_deferred_disable_multisig_req/050b89ad40b8d5b7d4c7ecec1d1b317683ee783a1f08021b587bb3834b1bb499.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "7748": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7749": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 359, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 359 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7750": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 360, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 360 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7751": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 361, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 361 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7752": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + } + }, + "7754": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 122, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 107, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7755": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 123, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "7757": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7758": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7759": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "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": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "7760": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7761": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "7762": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/bbcb928b364957b48a3b5f3833842039613ab993f596844309c16174fa01408f.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "7763": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 358, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 358 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7764": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 368, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 372, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 372 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 368 + } + }, + "7765": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 372, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 372 + } + }, + "7767": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 369, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 398, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 374, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 374 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 398 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 369 + } + }, + "7768": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 370, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 399, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 374, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 374 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 399 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 370 + } + }, + "7769": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 374, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 12, + "start_line": 374 + } + }, + "7771": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 374, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 374 + } + }, + "7772": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7773": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 368, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 368 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7774": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 369, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 369 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7775": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 370, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7776": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + } + }, + "7778": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "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/cancel_deferred_disable_multisig_req/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7780": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7781": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7782": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "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": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7783": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7784": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "7786": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "7787": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/cancel_deferred_disable_multisig_req/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 367, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 367 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7788": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 391, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "7790": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 381, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 392, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 35, + "start_line": 392 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 298 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 381 + } + }, + "7791": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 392, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 35, + "start_line": 392 + } + }, + "7793": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 392, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 10, + "start_line": 392 + } + }, + "7794": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 392, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 249, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 393, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 29, + "start_line": 393 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 249 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 392 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 298 + } + }, + "7795": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 393, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 29, + "start_line": 393 + } + }, + "7797": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 393, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 10, + "start_line": 393 + } + }, + "7798": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 249, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 393, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 394, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 394 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 393 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 249 + } + }, + "7799": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 394, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 394 + } + }, + "7801": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 394, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 10, + "start_line": 394 + } + }, + "7802": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 394, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 264, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 397, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 397 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 394 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "7803": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 382, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 397, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 397 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 265 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 382 + } + }, + "7804": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 384, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 266, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 397, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 397 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 266 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 384 + } + }, + "7805": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 397, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 397 + } + }, + "7807": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 392, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 398, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 41, + "start_line": 398 + }, + "While expanding the reference 'block_timestamp' in:" + ], + "start_col": 16, + "start_line": 392 + } + }, + "7808": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 398, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 398 + } + }, + "7810": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 392, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 399, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 40, + "start_line": 399 + }, + "While expanding the reference 'block_timestamp' in:" + ], + "start_col": 16, + "start_line": 392 + } + }, + "7811": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 399, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 399 + } + }, + "7813": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 383, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 374, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 404, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 401 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 374 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 383 + } + }, + "7814": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 386, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 402, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 402 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 5, + "start_line": 386 + } + }, + "7815": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 402, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 402 + }, + "While expanding the reference 'call_array' in:" + ], + "start_col": 5, + "start_line": 387 + } + }, + "7816": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 388, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 403, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 403 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 388 + } + }, + "7817": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 403, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 23, + "start_line": 403 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 5, + "start_line": 389 + } + }, + "7818": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 394, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 404, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 404 + }, + "While expanding the reference 'tx_info' in:" + ], + "start_col": 16, + "start_line": 394 + } + }, + "7819": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 404, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 401 + } + }, + "7821": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 405, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 405 + } + }, + "7823": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 371, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 404, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 483, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 46, + "start_line": 407 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 483 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 401 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 371 + } + }, + "7824": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 372, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 404, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 484, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 46, + "start_line": 407 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 484 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 401 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 372 + } + }, + "7825": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 404, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 485, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 46, + "start_line": 407 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 485 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 401 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 373 + } + }, + "7826": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 374, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 404, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 486, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 46, + "start_line": 407 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 486 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 27, + "start_line": 401 + }, + "While trying to update the implicit return value 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 374 + } + }, + "7827": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 386, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 408, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 408 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 5, + "start_line": 386 + } + }, + "7828": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 408, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 408 + }, + "While expanding the reference 'call_array' in:" + ], + "start_col": 5, + "start_line": 387 + } + }, + "7829": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 388, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 408, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 37, + "start_line": 408 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 388 + } + }, + "7830": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 409, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 409 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 5, + "start_line": 389 + } + }, + "7831": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 394, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 410 + }, + "While expanding the reference 'tx_info' in:" + ], + "start_col": 16, + "start_line": 394 + } + }, + "7832": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 392, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 18, + "start_line": 410 + }, + "While expanding the reference 'block_timestamp' in:" + ], + "start_col": 16, + "start_line": 392 + } + }, + "7833": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 393, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 35, + "start_line": 410 + }, + "While expanding the reference 'block_num' in:" + ], + "start_col": 16, + "start_line": 393 + } + }, + "7834": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 46, + "start_line": 407 + } + }, + "7836": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 411, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 411 + } + }, + "7838": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 483, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 417, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 392 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 407 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 483 + } + }, + "7839": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 484, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 417, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 393 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 407 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 484 + } + }, + "7840": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 485, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 394, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 417, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 394 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 407 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 485 + } + }, + "7841": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 486, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 410, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 395, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 417, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 395 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 46, + "start_line": 407 + }, + "While trying to update the implicit return value 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 486 + } + }, + "7842": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 386, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 414, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 414 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 5, + "start_line": 386 + } + }, + "7843": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 414, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 414 + } + }, + "7844": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 414, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 43, + "start_line": 414 + } + }, + "7845": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 388, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 415, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 415 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 388 + } + }, + "7846": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 415, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 23, + "start_line": 415 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 5, + "start_line": 389 + } + }, + "7847": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 394, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 416, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 416 + }, + "While expanding the reference 'tx_info' in:" + ], + "start_col": 16, + "start_line": 394 + } + }, + "7848": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 392, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 416, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 18, + "start_line": 416 + }, + "While expanding the reference 'block_timestamp' in:" + ], + "start_col": 16, + "start_line": 392 + } + }, + "7849": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 393, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 416, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 35, + "start_line": 416 + }, + "While expanding the reference 'block_num' in:" + ], + "start_col": 16, + "start_line": 393 + } + }, + "7850": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 407, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 417, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 417 + }, + "While expanding the reference 'in_multisig_mode' in:" + ], + "start_col": 26, + "start_line": 407 + } + }, + "7851": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 417, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 413 + } + }, + "7853": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 418, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 418 + } + }, + "7855": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 417, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 381, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 420, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 420 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 381 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 413 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 392 + } + }, + "7856": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 417, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 382, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 420, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 420 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 382 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 413 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 393 + } + }, + "7857": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 395, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 417, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 383, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 420, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 420 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 383 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 27, + "start_line": 413 + }, + "While trying to update the implicit return value 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 395 + } + }, + "7858": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 394, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 417, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 384, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 420, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 420 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 384 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 413 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 394 + } + }, + "7859": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 420, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 420 + } + }, + "7860": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 384, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 387 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 384 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7861": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7dc21e5febb3934461e79e32b9e043909f57ea5d5d88047175f79be259d9fdd5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 386, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 387 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_call_array_len' in:" + ], + "start_col": 5, + "start_line": 386 + }, + "While handling calldata argument 'call_array_len'" + ], + "start_col": 37, + "start_line": 1 + } + }, + "7862": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 387 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "7863": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7dc21e5febb3934461e79e32b9e043909f57ea5d5d88047175f79be259d9fdd5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 386, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 387 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 386 + }, + "While handling calldata argument 'call_array_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7865": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7dc21e5febb3934461e79e32b9e043909f57ea5d5d88047175f79be259d9fdd5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 386, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 387 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_call_array_len' in:" + ], + "start_col": 5, + "start_line": 386 + }, + "While handling calldata argument 'call_array_len'" + ], + "start_col": 37, + "start_line": 1 + } + }, + "7866": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 387 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 43, + "start_line": 8 + } + }, + "7868": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 387 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "7869": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 384, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 389 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 387 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 384 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7870": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 388, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 389 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 388 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7871": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 389 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "7872": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 388, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 389 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 388 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7874": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 388, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 389 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 388 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7875": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 389 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "7876": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7877": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 384, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 389 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 387 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 384 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7878": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 381, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 381 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7879": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 382, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 382 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7880": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 112, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 383, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 103, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 94, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7881": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 389 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "7883": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7dc21e5febb3934461e79e32b9e043909f57ea5d5d88047175f79be259d9fdd5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 386, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 182, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 153, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_call_array_len' in:" + ], + "start_col": 5, + "start_line": 386 + }, + "While handling calldata argument 'call_array_len'" + ], + "start_col": 37, + "start_line": 1 + } + }, + "7884": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 387, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 220, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 195, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_call_array' in:" + ], + "start_col": 5, + "start_line": 387 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 33, + "start_line": 5 + } + }, + "7886": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 388, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 262, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 235, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 388 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7887": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 389, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 296, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 273, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_calldata' in:" + ], + "start_col": 5, + "start_line": 389 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 31, + "start_line": 5 + } + }, + "7889": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + } + }, + "7891": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "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/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7893": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7894": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7895": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "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": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + } + }, + "7896": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 103, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 94, + "start_line": 1 + } + }, + "7897": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "7899": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/__validate__/883be30acb6a1330d51bfd10cbcbff897d747444eaacd9630821b0430bd22dc4.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "7900": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 380, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 380 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7901": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 425, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 436, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 21, + "start_line": 436 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 425 + } + }, + "7902": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 436, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 21, + "start_line": 436 + } + }, + "7904": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 436, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 329, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 444, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 437 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 329 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 436 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "7905": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 426, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 330, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 444, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 437 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 330 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 426 + } + }, + "7906": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 427, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 331, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 444, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 437 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 331 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 427 + } + }, + "7907": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 428, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 332, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 444, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 437 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 332 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 428 + } + }, + "7908": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 430, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 438, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 438 + }, + "While expanding the reference 'class_hash' in:" + ], + "start_col": 5, + "start_line": 430 + } + }, + "7909": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 431, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 439, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 439 + }, + "While expanding the reference 'contract_address_salt' in:" + ], + "start_col": 5, + "start_line": 431 + } + }, + "7910": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 432, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 440, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 440 + }, + "While expanding the reference 'implementation_address' in:" + ], + "start_col": 5, + "start_line": 432 + } + }, + "7911": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 433, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 441, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 441 + }, + "While expanding the reference 'initializer_selector' in:" + ], + "start_col": 5, + "start_line": 433 + } + }, + "7912": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 442, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 442 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 434 + } + }, + "7913": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 443, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 443 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 25, + "start_line": 434 + } + }, + "7914": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 444, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 437 + } + }, + "7916": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 445, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 445 + } + }, + "7917": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 427, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 434 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 427 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7918": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 434 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 434 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7919": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 434 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "7920": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 434 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 434 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7922": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 434 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 434 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7923": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 434 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "7924": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7925": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 427, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 434 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 427 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7926": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 425, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 425 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7927": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 426, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 426 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7928": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 434 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "7930": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 112, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 428, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 127, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 428 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7931": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/6a5e642bec1f7526308a73478077ef051a66625a56a9015e448ad8b892166ca8.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 430, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 174, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 149, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_class_hash' in:" + ], + "start_col": 5, + "start_line": 430 + }, + "While handling calldata argument 'class_hash'" + ], + "start_col": 33, + "start_line": 1 + } + }, + "7932": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/6a1a539ae30d2e62b23ed0bb735b8c83307bbbe2a0921f8d1bc90561bfef7d31.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 431, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 234, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 198, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_contract_address_salt' in:" + ], + "start_col": 5, + "start_line": 431 + }, + "While handling calldata argument 'contract_address_salt'" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7933": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e873b36f70ba086858da6461bd90d871fa83ad20a246f708b0b2e900747d6cbd.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 432, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 296, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 259, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_implementation_address' in:" + ], + "start_col": 5, + "start_line": 432 + }, + "While handling calldata argument 'implementation_address'" + ], + "start_col": 45, + "start_line": 1 + } + }, + "7934": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/eab2f02bb7ddd7dc10d7bea0d0d4bf773a1eb3b40ca36fd52031f4d2a9a62001.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 433, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 354, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 319, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_initializer_selector' in:" + ], + "start_col": 5, + "start_line": 433 + }, + "While handling calldata argument 'initializer_selector'" + ], + "start_col": 43, + "start_line": 1 + } + }, + "7935": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 396, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 369, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 434 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "7936": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 434, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 430, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 407, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_calldata' in:" + ], + "start_col": 25, + "start_line": 434 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 31, + "start_line": 5 + } + }, + "7938": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + } + }, + "7940": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "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/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7942": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7943": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7944": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "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": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "7945": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 127, + "start_line": 1 + } + }, + "7946": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "7948": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/4305d7e917d5e2f5b3802ecde70b384451516b7bb5c1487614dce96f189bfdb2.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "7949": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_deploy__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 424, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 424 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7950": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 450, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 455, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 36, + "start_line": 455 + }, + "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": 5, + "start_line": 450 + } + }, + "7951": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 451, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 455, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 36, + "start_line": 455 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 451 + } + }, + "7952": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 453, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 455, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 36, + "start_line": 455 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 453 + } + }, + "7953": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 455, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 36, + "start_line": 455 + } + }, + "7955": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 455, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 456, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 34, + "start_line": 456 + }, + "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": 36, + "start_line": 455 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "7956": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 455, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 456, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 34, + "start_line": 456 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 455 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "7957": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Account_signers_num_hw_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 455, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 456, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 34, + "start_line": 456 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 455 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "7958": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 456, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 34, + "start_line": 456 + } + }, + "7960": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 458, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 64, + "start_line": 458 + } + }, + "7962": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 458, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 458 + } + }, + "7963": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 456, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 460, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 21, + "start_line": 460 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 456 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "7964": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 460, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 21, + "start_line": 460 + } + }, + "7966": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 460, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 526, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 464, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 462 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 526 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 460 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "7967": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 456, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 464, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 462 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 527 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 456 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "7968": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Multisig_num_signers/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 456, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 464, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 462 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 528 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 456 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "7969": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 452, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 464, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 462 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 452 + } + }, + "7970": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 463, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 13, + "start_line": 463 + } + }, + "7971": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 463, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 39, + "start_line": 463 + } + }, + "7972": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 463, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 62, + "start_line": 463 + } + }, + "7973": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 464, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 462 + } + }, + "7975": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 526, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 464, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 450, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 466, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 466 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 450 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 462 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 526 + } + }, + "7976": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 527, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 464, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 451, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 466, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 466 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 451 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 462 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 527 + } + }, + "7977": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 529, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 464, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 452, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 466, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 466 + }, + "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 452 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 462 + }, + "While trying to update the implicit return value 'ecdsa_ptr' in:" + ], + "start_col": 9, + "start_line": 529 + } + }, + "7978": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 528, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/signers/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 464, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 453, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 466, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 466 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 453 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 462 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 528 + } + }, + "7979": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 466, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 466 + } + }, + "7980": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/6a5e642bec1f7526308a73478077ef051a66625a56a9015e448ad8b892166ca8.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 454, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 454 + }, + "While handling calldata argument 'class_hash'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "7982": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "7983": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 450, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 450 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "7984": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 451, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 451 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "7985": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 112, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 452, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 103, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 94, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 5, + "start_line": 452 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "7986": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 453, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 453 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "7987": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/6a5e642bec1f7526308a73478077ef051a66625a56a9015e448ad8b892166ca8.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 454, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 174, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 149, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_class_hash' in:" + ], + "start_col": 3, + "start_line": 454 + }, + "While handling calldata argument 'class_hash'" + ], + "start_col": 33, + "start_line": 1 + } + }, + "7988": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + } + }, + "7990": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "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/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "7992": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "7993": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "7994": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 136, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "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": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + } + }, + "7995": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 103, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 94, + "start_line": 1 + } + }, + "7996": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "7998": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/aeb171d2cc305f87c40b0407565ecdd1a4c396c46cd94f15ca0069e15eab01ed.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "7999": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__validate_declare__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 449, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "8000": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 478, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 478 + } + }, + "8002": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 471, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 479, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 479 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 471 + } + }, + "8003": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 479, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 479 + } + }, + "8005": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 479, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 10, + "start_line": 479 + } + }, + "8006": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 479, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 24, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/utils/Guards.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 481, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 481 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 24 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 479 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "8007": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 481, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 481 + } + }, + "8009": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 479, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 487, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 45, + "start_line": 487 + }, + "While expanding the reference 'tx_info' in:" + ], + "start_col": 16, + "start_line": 479 + } + }, + "8010": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 487, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 487 + } + }, + "8012": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 472, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 492, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 490 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 138 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 472 + } + }, + "8013": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 473, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 492, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 490 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 139 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 473 + } + }, + "8014": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 491, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 491 + } + }, + "8015": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 479, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 491, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 33, + "start_line": 491 + }, + "While expanding the reference 'tx_info' in:" + ], + "start_col": 16, + "start_line": 479 + } + }, + "8016": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 492, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 31, + "start_line": 490 + } + }, + "8018": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 493, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 493 + } + }, + "8020": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 493, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 493 + } + }, + "8022": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 494, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 35, + "start_line": 494 + } + }, + "8024": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 492, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 471, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 495, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 495 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 471 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 490 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 137 + } + }, + "8025": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 492, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 472, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 495, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 495 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 472 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 490 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 138 + } + }, + "8026": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 492, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 473, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 495, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 495 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 473 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 490 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 139 + } + }, + "8027": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 495, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 30, + "start_line": 495 + } + }, + "8029": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 494, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 495, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 42, + "start_line": 495 + }, + "While expanding the reference 'empty_resp' in:" + ], + "start_col": 14, + "start_line": 494 + } + }, + "8030": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 495, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 495 + } + }, + "8031": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 137, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 492, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 396, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 500, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 36, + "start_line": 498 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 396 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 490 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 137 + } + }, + "8032": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 138, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 492, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 397, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 500, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 36, + "start_line": 498 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 397 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 490 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 138 + } + }, + "8033": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 139, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/multisig/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 492, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 398, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 500, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 36, + "start_line": 498 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 398 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 490 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 139 + } + }, + "8034": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 499, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 9, + "start_line": 499 + }, + "While expanding the reference 'call_array_len' in:" + ], + "start_col": 5, + "start_line": 475 + } + }, + "8035": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 499, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 499 + }, + "While expanding the reference 'call_array' in:" + ], + "start_col": 27, + "start_line": 475 + } + }, + "8036": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 499, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 37, + "start_line": 499 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 476 + } + }, + "8037": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 499, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 51, + "start_line": 499 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 25, + "start_line": 476 + } + }, + "8038": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 500, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 36, + "start_line": 498 + } + }, + "8040": { + "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 501, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 5, + "start_line": 501 + } + }, + "8041": { + "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__/372012ab0384bb7289ee5ea400e8c2c07e9056ce02e109689ce1ae824183c43b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/__execute__/372012ab0384bb7289ee5ea400e8c2c07e9056ce02e109689ce1ae824183c43b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "8043": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute___encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c2f1fff90123af1ac991a5f7ea9000b626c118903b694b399e02806d44fb5def.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 7, + "start_line": 477 + }, + "While handling return value 'response_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "8044": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute___encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 477 + }, + "While handling return value 'response'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "8045": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute___encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 477 + }, + "While handling return value 'response'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "8047": { + "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/c2f1fff90123af1ac991a5f7ea9000b626c118903b694b399e02806d44fb5def.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 477 + }, + "While handling return value 'response'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 477 + }, + "While handling return value 'response_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "8049": { + "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/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 477 + }, + "While handling return value 'response'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "8050": { + "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/c2f1fff90123af1ac991a5f7ea9000b626c118903b694b399e02806d44fb5def.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 477 + }, + "While handling return value 'response'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 27, + "start_line": 477 + }, + "While handling return value 'response'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 477 + }, + "While handling return value 'response_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "8052": { + "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/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 477 + }, + "While handling return value 'response'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "8053": { + "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/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 477 + }, + "While handling return value 'response'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "8054": { + "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/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 477 + }, + "While handling return value 'response'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "8056": { + "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/b929869545548e90b3e0972d942496bfe6c38d7ef8c117fc5015fd8f5ae5ede3.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 477, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/__execute__/372012ab0384bb7289ee5ea400e8c2c07e9056ce02e109689ce1ae824183c43b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 477 + }, + "While handling return value 'response'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "8057": { + "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__/372012ab0384bb7289ee5ea400e8c2c07e9056ce02e109689ce1ae824183c43b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "8058": { + "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__/372012ab0384bb7289ee5ea400e8c2c07e9056ce02e109689ce1ae824183c43b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/__execute__/372012ab0384bb7289ee5ea400e8c2c07e9056ce02e109689ce1ae824183c43b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "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": 470 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "8059": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute___encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/__execute__/372012ab0384bb7289ee5ea400e8c2c07e9056ce02e109689ce1ae824183c43b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "8060": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/__execute__/a8ca7837cb8bee331484b20a49f0effa5cacdf45c9289aa5630ef98fa0f263bf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "8062": { + "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__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 473, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 475 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 473 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "8063": { + "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/7dc21e5febb3934461e79e32b9e043909f57ea5d5d88047175f79be259d9fdd5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 475 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_call_array_len' in:" + ], + "start_col": 5, + "start_line": 475 + }, + "While handling calldata argument 'call_array_len'" + ], + "start_col": 37, + "start_line": 1 + } + }, + "8064": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 475 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "8065": { + "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/7dc21e5febb3934461e79e32b9e043909f57ea5d5d88047175f79be259d9fdd5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 475 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 475 + }, + "While handling calldata argument 'call_array_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "8067": { + "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/7dc21e5febb3934461e79e32b9e043909f57ea5d5d88047175f79be259d9fdd5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 475 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_call_array_len' in:" + ], + "start_col": 5, + "start_line": 475 + }, + "While handling calldata argument 'call_array_len'" + ], + "start_col": 37, + "start_line": 1 + } + }, + "8068": { + "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/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 475 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 43, + "start_line": 8 + } + }, + "8070": { + "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/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 27, + "start_line": 475 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "8071": { + "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__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 473, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 476 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 475 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 473 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "8072": { + "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/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 476 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 476 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "8073": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 476 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "8074": { + "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/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 476 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 476 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "8076": { + "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/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 476 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 476 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "8077": { + "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/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 25, + "start_line": 476 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "8078": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "8079": { + "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__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 473, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 476 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 475 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 473 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "8080": { + "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__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 471, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 471 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "8081": { + "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__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 472, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 472 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "8082": { + "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/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 476 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "8084": { + "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/7dc21e5febb3934461e79e32b9e043909f57ea5d5d88047175f79be259d9fdd5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 161, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 132, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_call_array_len' in:" + ], + "start_col": 5, + "start_line": 475 + }, + "While handling calldata argument 'call_array_len'" + ], + "start_col": 37, + "start_line": 1 + } + }, + "8085": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/23eb145dfcc4e5c056d6e803f1da4bcc93607ee9f55fca5ad18024a8574c1b34.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 475, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 199, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 174, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_call_array' in:" + ], + "start_col": 27, + "start_line": 475 + }, + "While handling calldata argument 'call_array'" + ], + "start_col": 33, + "start_line": 5 + } + }, + "8087": { + "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/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 241, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 214, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 476 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "8088": { + "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/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 476, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 275, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 252, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_calldata' in:" + ], + "start_col": 25, + "start_line": 476 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 31, + "start_line": 5 + } + }, + "8090": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + } + }, + "8092": { + "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__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "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": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "8093": { + "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__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "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": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "8094": { + "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__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "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": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "8095": { + "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__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "8097": { + "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__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 470 + }, + "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": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "8098": { + "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__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 470 + }, + "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": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "8099": { + "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__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "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": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "8100": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'ecdsa_ptr' in:" + ], + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 17, + "start_line": 1 + } + }, + "8101": { + "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__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 60, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "8102": { + "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__/839c8d24f2b224982c349661ef75e551b69a0dd740b42c585dff70573f202040.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__execute__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 470 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "8103": { + "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__/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 470, + "input_file": { + "filename": "src/account/Account.cairo" + }, + "start_col": 6, + "start_line": 470 + }, + "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": {} + } + } + ], + "30": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.value)\nassert ids.value % PRIME != 0, f'assert_not_zero failed: {ids.value} = 0.'", + "flow_tracking_data": { + "ap_tracking": { + "group": 5, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_not_zero.value": 2 + } + } + } + ], + "35": [ + { + "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": 6, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_not_equal.a": 3, + "starkware.cairo.common.math.assert_not_equal.b": 4 + } + } + } + ], + "41": [ + { + "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": 7, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_nn.a": 5 + } + } + } + ], + "59": [ + { + "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": 10, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_250_bit.high": 8, + "starkware.cairo.common.math.assert_250_bit.low": 7, + "starkware.cairo.common.math.assert_250_bit.value": 6 + } + } + } + ], + "72": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "code": "from starkware.cairo.common.math_utils import assert_integer\nassert ids.MAX_HIGH < 2**128 and ids.MAX_LOW < 2**128\nassert PRIME - 1 == ids.MAX_HIGH * 2**128 + ids.MAX_LOW\nassert_integer(ids.value)\nids.low = ids.value & ((1 << 128) - 1)\nids.high = ids.value >> 128", + "flow_tracking_data": { + "ap_tracking": { + "group": 11, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.split_felt.high": 11, + "starkware.cairo.common.math.split_felt.low": 10, + "starkware.cairo.common.math.split_felt.value": 9 + } + } + } + ], + "101": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "import itertools\n\nfrom starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert_integer(ids.b)\na = ids.a % PRIME\nb = ids.b % PRIME\nassert a <= b, f'a = {a} is not less than or equal to b = {b}.'\n\n# Find an arc less than PRIME / 3, and another less than PRIME / 2.\nlengths_and_indices = [(a, 0), (b - a, 1), (PRIME - 1 - b, 2)]\nlengths_and_indices.sort()\nassert lengths_and_indices[0][0] <= PRIME // 3 and lengths_and_indices[1][0] <= PRIME // 2\nexcluded = lengths_and_indices[2][1]\n\nmemory[ids.range_check_ptr + 1], memory[ids.range_check_ptr + 0] = (\n divmod(lengths_and_indices[0][0], ids.PRIME_OVER_3_HIGH))\nmemory[ids.range_check_ptr + 3], memory[ids.range_check_ptr + 2] = (\n divmod(lengths_and_indices[1][0], ids.PRIME_OVER_2_HIGH))", + "flow_tracking_data": { + "ap_tracking": { + "group": 12, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_le_felt.a": 12, + "starkware.cairo.common.math.assert_le_felt.b": 13, + "starkware.cairo.common.math.assert_le_felt.range_check_ptr": 14 + } + } + } + ], + "111": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "memory[ap] = 1 if excluded != 0 else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 12, + "offset": 8 + }, + "reference_ids": {} + } + } + ], + "125": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "memory[ap] = 1 if excluded != 1 else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 12, + "offset": 9 + }, + "reference_ids": {} + } + } + ], + "137": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "assert excluded == 2", + "flow_tracking_data": { + "ap_tracking": { + "group": 12, + "offset": 10 + }, + "reference_ids": {} + } + } + ], + "146": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert_integer(ids.b)\nassert (ids.a % PRIME) < (ids.b % PRIME), \\\n f'a = {ids.a % PRIME} is not less than b = {ids.b % PRIME}.'", + "flow_tracking_data": { + "ap_tracking": { + "group": 13, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_lt_felt.a": 15, + "starkware.cairo.common.math.assert_lt_felt.b": 16 + } + } + } + ], + "157": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.div)\nassert 0 < ids.div <= PRIME // range_check_builtin.bound, \\\n f'div={hex(ids.div)} is out of the valid range.'\nids.q, ids.r = divmod(ids.value, ids.div)", + "flow_tracking_data": { + "ap_tracking": { + "group": 14, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.unsigned_div_rem.div": 18, + "starkware.cairo.common.math.unsigned_div_rem.q": 20, + "starkware.cairo.common.math.unsigned_div_rem.r": 19, + "starkware.cairo.common.math.unsigned_div_rem.value": 17 + } + } + } + ], + "174": [ + { + "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": 15, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.storage.normalize_address.addr": 21, + "starkware.starknet.common.storage.normalize_address.is_small": 22 + } + } + } + ], + "192": [ + { + "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": 15, + "offset": 2 + }, + "reference_ids": { + "starkware.starknet.common.storage.normalize_address.addr": 21, + "starkware.starknet.common.storage.normalize_address.is_250": 23 + } + } + } + ], + "219": [ + { + "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": 16, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.call_contract.syscall_ptr": 24 + } + } + } + ], + "231": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "code": "syscall_handler.library_call(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 17, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.library_call.syscall_ptr": 25 + } + } + } + ], + "239": [ + { + "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": 18, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 26 + } + } + } + ], + "246": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_number" + ], + "code": "syscall_handler.get_block_number(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 19, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.get_block_number.syscall_ptr": 27 + } + } + } + ], + "253": [ + { + "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": 20, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.get_contract_address.syscall_ptr": 28 + } + } + } + ], + "260": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_block_timestamp" + ], + "code": "syscall_handler.get_block_timestamp(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 21, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.get_block_timestamp.syscall_ptr": 29 + } + } + } + ], + "268": [ + { + "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": 22, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 30 + } + } + } + ], + "277": [ + { + "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": 23, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 31 + } + } + } + ], + "287": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "code": "syscall_handler.emit_event(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 24, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.emit_event.syscall_ptr": 32 + } + } + } + ], + "293": [ + { + "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": 25, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.get_tx_info.syscall_ptr": 33 + } + } + } + ], + "305": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "code": "memory[ap] = 0 if (ids.a % PRIME) <= (ids.b % PRIME) else 1", + "flow_tracking_data": { + "ap_tracking": { + "group": 27, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math_cmp.is_le_felt.a": 34, + "starkware.cairo.common.math_cmp.is_le_felt.b": 35 + } + } + } + ], + "510": [ + { + "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": 43, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.signature.verify_ecdsa_signature.ecdsa_ptr": 38, + "starkware.cairo.common.signature.verify_ecdsa_signature.signature_r": 36, + "starkware.cairo.common.signature.verify_ecdsa_signature.signature_s": 37 + } + } + } + ], + "515": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.bigint", + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3" + ], + "code": "from starkware.cairo.common.cairo_secp.secp_utils import split\n\nsegments.write_arg(ids.res.address_, split(value))", + "flow_tracking_data": { + "ap_tracking": { + "group": 44, + "offset": 0 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3.res": 39 + } + } + } + ], + "528": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.assert_165_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": 45, + "offset": 0 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.field.assert_165_bit.high": 42, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.low": 41, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.value": 40 + } + } + } + ], + "617": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "code": "from starkware.cairo.common.cairo_secp.secp256r1_utils import SECP256R1_P as SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 48, + "offset": 1 + }, + "reference_ids": {} + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.verify_zero" + ], + "code": "from starkware.cairo.common.cairo_secp.secp_utils import pack\n\nq, r = divmod(pack(ids.val, PRIME), SECP_P)\nassert r == 0, f\"verify_zero: Invalid input {ids.val.d0, ids.val.d1, ids.val.d2}.\"\nids.q = q % PRIME", + "flow_tracking_data": { + "ap_tracking": { + "group": 48, + "offset": 1 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.field.verify_zero.q": 44, + "lib.secp256r1.src.secp256r1.field.verify_zero.val": 43 + } + } + } + ], + "649": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "code": "from starkware.cairo.common.cairo_secp.secp256r1_utils import SECP256R1_P as SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 49, + "offset": 0 + }, + "reference_ids": {} + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "code": "from starkware.cairo.common.cairo_secp.secp_utils import pack\nx = pack(ids.x, PRIME) % SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 49, + "offset": 0 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.field.is_zero.x": 45 + } + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "code": "memory[ap] = to_felt_or_relocatable(x == 0)", + "flow_tracking_data": { + "ap_tracking": { + "group": 49, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "664": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.is_zero" + ], + "code": "from starkware.python.math_utils import div_mod\n\nvalue = x_inv = div_mod(1, x, SECP_P)", + "flow_tracking_data": { + "ap_tracking": { + "group": 49, + "offset": 1 + }, + "reference_ids": {} + } + } + ], + "685": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "code": "from starkware.cairo.common.cairo_secp.secp256r1_utils import SECP256R1_P as SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 50, + "offset": 0 + }, + "reference_ids": {} + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "code": "from starkware.cairo.common.cairo_secp.secp_utils import pack\nx = pack(ids.x, PRIME) % SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 50, + "offset": 0 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.field.reduce.x": 46 + } + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "code": "from starkware.python.math_utils import div_mod\n\nvalue = x_inv = div_mod(1, x, SECP_P)", + "flow_tracking_data": { + "ap_tracking": { + "group": 50, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "688": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "code": "from starkware.cairo.common.cairo_secp.secp_utils import pack\nx = pack(ids.x, PRIME) % SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 50, + "offset": 10 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.field.reduce.x": 47 + } + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.field", + "lib.secp256r1.src.secp256r1.field.reduce" + ], + "code": "from starkware.python.math_utils import div_mod\n\nvalue = x_inv = div_mod(1, x, SECP_P)", + "flow_tracking_data": { + "ap_tracking": { + "group": 50, + "offset": 10 + }, + "reference_ids": {} + } + } + ], + "701": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "code": "from starkware.cairo.common.cairo_secp.secp256r1_utils import SECP256R1_P as SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 51, + "offset": 0 + }, + "reference_ids": {} + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "code": "from starkware.cairo.common.cairo_secp.secp256r1_utils import SECP256R1_ALPHA as ALPHA", + "flow_tracking_data": { + "ap_tracking": { + "group": 51, + "offset": 0 + }, + "reference_ids": {} + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope" + ], + "code": "from starkware.cairo.common.cairo_secp.secp_utils import pack\nfrom starkware.python.math_utils import ec_double_slope\n\n# Compute the slope.\nx = pack(ids.point.x, PRIME)\ny = pack(ids.point.y, PRIME)\nvalue = slope = ec_double_slope(point=(x, y), alpha=ALPHA, p=SECP_P)", + "flow_tracking_data": { + "ap_tracking": { + "group": 51, + "offset": 0 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope.point": 48 + } + } + } + ], + "751": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "code": "from starkware.cairo.common.cairo_secp.secp256r1_utils import SECP256R1_P as SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 52, + "offset": 0 + }, + "reference_ids": {} + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.compute_slope" + ], + "code": "from starkware.cairo.common.cairo_secp.secp_utils import pack\nfrom starkware.python.math_utils import line_slope\n\n# Compute the slope.\nx0 = pack(ids.point0.x, PRIME)\ny0 = pack(ids.point0.y, PRIME)\nx1 = pack(ids.point1.x, PRIME)\ny1 = pack(ids.point1.y, PRIME)\nvalue = slope = line_slope(point1=(x0, y0), point2=(x1, y1), p=SECP_P)", + "flow_tracking_data": { + "ap_tracking": { + "group": 52, + "offset": 0 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.ec.compute_slope.point0": 49, + "lib.secp256r1.src.secp256r1.ec.compute_slope.point1": 50 + } + } + } + ], + "800": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "code": "from starkware.cairo.common.cairo_secp.secp256r1_utils import SECP256R1_P as SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 53, + "offset": 190 + }, + "reference_ids": {} + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "code": "from starkware.cairo.common.cairo_secp.secp_utils import pack\n\nslope = pack(ids.slope, PRIME)\nx = pack(ids.point.x, PRIME)\ny = pack(ids.point.y, PRIME)\n\nvalue = new_x = (pow(slope, 2, SECP_P) - 2 * x) % SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 53, + "offset": 190 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.ec.ec_double.point": 51, + "lib.secp256r1.src.secp256r1.ec.ec_double.slope": 52 + } + } + } + ], + "803": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.ec_double" + ], + "code": "value = new_y = (slope * (x - new_x) - y) % SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 53, + "offset": 200 + }, + "reference_ids": {} + } + } + ], + "893": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "code": "from starkware.cairo.common.cairo_secp.secp256r1_utils import SECP256R1_P as SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 54, + "offset": 149 + }, + "reference_ids": {} + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "code": "from starkware.cairo.common.cairo_secp.secp_utils import pack\n\nslope = pack(ids.slope, PRIME)\nx0 = pack(ids.point0.x, PRIME)\nx1 = pack(ids.point1.x, PRIME)\ny0 = pack(ids.point0.y, PRIME)\n\nvalue = new_x = (pow(slope, 2, SECP_P) - x0 - x1) % SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 54, + "offset": 149 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.ec.fast_ec_add.point0": 53, + "lib.secp256r1.src.secp256r1.ec.fast_ec_add.point1": 54, + "lib.secp256r1.src.secp256r1.ec.fast_ec_add.slope": 55 + } + } + } + ], + "896": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec", + "lib.secp256r1.src.secp256r1.ec.fast_ec_add" + ], + "code": "value = new_y = (slope * (x0 - new_x) - y0) % SECP_P", + "flow_tracking_data": { + "ap_tracking": { + "group": 54, + "offset": 159 + }, + "reference_ids": {} + } + } + ], + "1065": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner" + ], + "code": "ids.dibit = ((ids.scalar_u >> ids.m) & 1) + 2 * ((ids.scalar_v >> ids.m) & 1)", + "flow_tracking_data": { + "ap_tracking": { + "group": 62, + "offset": 0 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.dibit": 59, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.m": 58, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.scalar_u": 56, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.scalar_v": 57 + } + } + } + ], + "1290": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd", + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner" + ], + "code": "ids.quad_bit = (\n 8 * ((ids.scalar_v >> ids.m) & 1)\n + 4 * ((ids.scalar_u >> ids.m) & 1)\n + 2 * ((ids.scalar_v >> (ids.m - 1)) & 1)\n + ((ids.scalar_u >> (ids.m - 1)) & 1)\n)", + "flow_tracking_data": { + "ap_tracking": { + "group": 73, + "offset": 0 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.m": 62, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.quad_bit": 63, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.scalar_u": 60, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.scalar_v": 61 + } + } + } + ], + "3496": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1", + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3" + ], + "code": "ids.len_hi = max(ids.scalar_u.d2.bit_length(), ids.scalar_v.d2.bit_length())-1", + "flow_tracking_data": { + "ap_tracking": { + "group": 118, + "offset": 0 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.len_hi": 66, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.scalar_u": 64, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.scalar_v": 65 + } + } + } + ], + "3810": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "code": "from starkware.cairo.common.cairo_secp.secp256r1_utils import SECP256R1_N as N", + "flow_tracking_data": { + "ap_tracking": { + "group": 123, + "offset": 0 + }, + "reference_ids": {} + } + }, + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "code": "from starkware.cairo.common.cairo_secp.secp_utils import pack\nfrom starkware.python.math_utils import div_mod, safe_div\n\na = pack(ids.a, PRIME)\nb = pack(ids.b, PRIME)\nvalue = res = div_mod(a, b, N)", + "flow_tracking_data": { + "ap_tracking": { + "group": 123, + "offset": 0 + }, + "reference_ids": { + "lib.secp256r1.src.secp256r1.signature.div_mod_n.a": 67, + "lib.secp256r1.src.secp256r1.signature.div_mod_n.b": 68 + } + } + } + ], + "3813": [ + { + "accessible_scopes": [ + "lib.secp256r1.src.secp256r1.signature", + "lib.secp256r1.src.secp256r1.signature.div_mod_n" + ], + "code": "value = k_plus_one = safe_div(res * b - a, N) + 1", + "flow_tracking_data": { + "ap_tracking": { + "group": 123, + "offset": 10 + }, + "reference_ids": {} + } + } + ], + "6804": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 267, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "6838": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_impl_version_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 271, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "6885": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 276, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "6913": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.upgrade" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 278, + "offset": 171 + }, + "reference_ids": {} + } + } + ], + "6941": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.migrate_storage" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 282, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "6966": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.add_signer_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 284, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7024": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.swap_signers_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 288, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7079": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setPublicKey" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 292, + "offset": 29 + }, + "reference_ids": {} + } + } + ], + "7109": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 296, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7143": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.remove_signer_with_etd" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 300, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7171": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_remove_signer_req" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 302, + "offset": 120 + }, + "reference_ids": {} + } + } + ], + "7195": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getPublicKey_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 305, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7226": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_public_key_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 310, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7259": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signers_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 316, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7310": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_signer_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 323, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7350": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_remove_signer_req_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 327, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7384": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_execution_time_delay_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 331, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7419": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_valid_signature_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 336, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7475": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isValidSignature_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 342, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7520": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_multisig_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 346, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7569": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_multisig" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 349, + "offset": 125 + }, + "reference_ids": {} + } + } + ], + "7585": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_pending_multisig_transaction_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 351, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7627": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sign_pending_multisig_transaction_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 355, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7697": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 361, + "offset": 120 + }, + "reference_ids": {} + } + } + ], + "7723": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.disable_multisig_with_etd" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 363, + "offset": 261 + }, + "reference_ids": {} + } + } + ], + "7739": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_deferred_disable_multisig_req_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 365, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7778": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.cancel_deferred_disable_multisig_req" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 368, + "offset": 100 + }, + "reference_ids": {} + } + } + ], + "7891": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate__" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 377, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "7940": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_deploy__" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 379, + "offset": 143 + }, + "reference_ids": {} + } + } + ], + "7990": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__validate_declare__" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 383, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "8041": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__execute___encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 387, + "offset": 0 + }, + "reference_ids": {} + } + } + ] + }, + "identifiers": { + "__main__.ACCOUNT_IMPL_VERSION": { + "destination": "src.utils.constants.ACCOUNT_IMPL_VERSION", + "type": "alias" + }, + "__main__.Account": { + "destination": "src.account.library.Account", + "type": "alias" + }, + "__main__.AccountCallArray": { + "destination": "src.account.library.AccountCallArray", + "type": "alias" + }, + "__main__.Account_execution_time_delay_sec": { + "destination": "src.account.library.Account_execution_time_delay_sec", + "type": "alias" + }, + "__main__.Account_signers_num_hw_signers": { + "destination": "src.signers.library.Account_signers_num_hw_signers", + "type": "alias" + }, + "__main__.DeferredMultisigDisableRequest": { + "destination": "src.multisig.library.DeferredMultisigDisableRequest", + "type": "alias" + }, + "__main__.DeferredRemoveSignerRequest": { + "destination": "src.signers.library.DeferredRemoveSignerRequest", + "type": "alias" + }, + "__main__.Guards": { + "destination": "src.utils.Guards.Guards", + "type": "alias" + }, + "__main__.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "__main__.IACCOUNT_ID": { + "destination": "src.utils.constants.IACCOUNT_ID", + "type": "alias" + }, + "__main__.IndexedSignerModel": { + "destination": "src.signers.library.IndexedSignerModel", + "type": "alias" + }, + "__main__.Multisig": { + "destination": "src.multisig.library.Multisig", + "type": "alias" + }, + "__main__.Multisig_num_signers": { + "destination": "src.multisig.library.Multisig_num_signers", + "type": "alias" + }, + "__main__.PendingMultisigTransaction": { + "destination": "src.multisig.library.PendingMultisigTransaction", + "type": "alias" + }, + "__main__.Proxy": { + "destination": "lib.openzeppelin.upgrades.library.Proxy", + "type": "alias" + }, + "__main__.SUPPORTS_INTERFACE_SELECTOR": { + "destination": "src.utils.constants.SUPPORTS_INTERFACE_SELECTOR", + "type": "alias" + }, + "__main__.SignatureBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", + "type": "alias" + }, + "__main__.SignerModel": { + "destination": "src.signers.library.SignerModel", + "type": "alias" + }, + "__main__.Signers": { + "destination": "src.signers.library.Signers", + "type": "alias" + }, + "__main__.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "__main__.__execute__": { + "decorators": ["external"], + "pc": 8000, + "type": "function" + }, + "__main__.__execute__.Args": { + "full_name": "__main__.__execute__.Args", + "members": { + "call_array": { + "cairo_type": "src.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 + } + }, + "size": 4, + "type": "struct" + }, + "__main__.__execute__.ImplicitArgs": { + "full_name": "__main__.__execute__.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__.__execute__.Return": { + "cairo_type": "(response_len: felt, response: felt*)", + "type": "type_definition" + }, + "__main__.__execute__.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__main__.__validate__": { + "decorators": ["external"], + "pc": 7788, + "type": "function" + }, + "__main__.__validate__.Args": { + "full_name": "__main__.__validate__.Args", + "members": { + "call_array": { + "cairo_type": "src.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 + } + }, + "size": 4, + "type": "struct" + }, + "__main__.__validate__.ImplicitArgs": { + "full_name": "__main__.__validate__.ImplicitArgs", + "members": { + "ecdsa_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", + "offset": 2 + }, + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 3 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "__main__.__validate__.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.__validate__.SIZEOF_LOCALS": { + "type": "const", + "value": 3 + }, + "__main__.__validate_declare__": { + "decorators": ["external"], + "pc": 7950, + "type": "function" + }, + "__main__.__validate_declare__.Args": { + "full_name": "__main__.__validate_declare__.Args", + "members": { + "class_hash": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.__validate_declare__.ImplicitArgs": { + "full_name": "__main__.__validate_declare__.ImplicitArgs", + "members": { + "ecdsa_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", + "offset": 2 + }, + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 3 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "__main__.__validate_declare__.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.__validate_declare__.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.__validate_deploy__": { + "decorators": ["external"], + "pc": 7901, + "type": "function" + }, + "__main__.__validate_deploy__.Args": { + "full_name": "__main__.__validate_deploy__.Args", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 5 + }, + "calldata_len": { + "cairo_type": "felt", + "offset": 4 + }, + "class_hash": { + "cairo_type": "felt", + "offset": 0 + }, + "contract_address_salt": { + "cairo_type": "felt", + "offset": 1 + }, + "implementation_address": { + "cairo_type": "felt", + "offset": 2 + }, + "initializer_selector": { + "cairo_type": "felt", + "offset": 3 + } + }, + "size": 6, + "type": "struct" + }, + "__main__.__validate_deploy__.ImplicitArgs": { + "full_name": "__main__.__validate_deploy__.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__.__validate_deploy__.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.__validate_deploy__.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.add_signer": { + "decorators": ["external"], + "pc": 6951, + "type": "function" + }, + "__main__.add_signer.Args": { + "full_name": "__main__.add_signer.Args", + "members": { + "signer": { + "cairo_type": "src.signers.library.SignerModel", + "offset": 0 + } + }, + "size": 7, + "type": "struct" + }, + "__main__.add_signer.ImplicitArgs": { + "full_name": "__main__.add_signer.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__.add_signer.Return": { + "cairo_type": "(signer_id: felt)", + "type": "type_definition" + }, + "__main__.add_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "__main__.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "__main__.cancel_deferred_disable_multisig_req": { + "decorators": ["external"], + "pc": 7764, + "type": "function" + }, + "__main__.cancel_deferred_disable_multisig_req.Args": { + "full_name": "__main__.cancel_deferred_disable_multisig_req.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.cancel_deferred_disable_multisig_req.ImplicitArgs": { + "full_name": "__main__.cancel_deferred_disable_multisig_req.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__.cancel_deferred_disable_multisig_req.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.cancel_deferred_disable_multisig_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.cancel_deferred_remove_signer_req": { + "decorators": ["external"], + "pc": 7153, + "type": "function" + }, + "__main__.cancel_deferred_remove_signer_req.Args": { + "full_name": "__main__.cancel_deferred_remove_signer_req.Args", + "members": { + "removed_signer_id": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.cancel_deferred_remove_signer_req.ImplicitArgs": { + "full_name": "__main__.cancel_deferred_remove_signer_req.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__.cancel_deferred_remove_signer_req.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.cancel_deferred_remove_signer_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.disable_multisig": { + "decorators": ["external"], + "pc": 7683, + "type": "function" + }, + "__main__.disable_multisig.Args": { + "full_name": "__main__.disable_multisig.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.disable_multisig.ImplicitArgs": { + "full_name": "__main__.disable_multisig.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__.disable_multisig.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.disable_multisig.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.disable_multisig_with_etd": { + "decorators": ["external"], + "pc": 7707, + "type": "function" + }, + "__main__.disable_multisig_with_etd.Args": { + "full_name": "__main__.disable_multisig_with_etd.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.disable_multisig_with_etd.ImplicitArgs": { + "full_name": "__main__.disable_multisig_with_etd.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__.disable_multisig_with_etd.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.disable_multisig_with_etd.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.getPublicKey": { + "decorators": ["view"], + "pc": 7181, + "type": "function" + }, + "__main__.getPublicKey.Args": { + "full_name": "__main__.getPublicKey.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.getPublicKey.ImplicitArgs": { + "full_name": "__main__.getPublicKey.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__.getPublicKey.Return": { + "cairo_type": "(publicKey: felt)", + "type": "type_definition" + }, + "__main__.getPublicKey.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.get_block_number": { + "destination": "starkware.starknet.common.syscalls.get_block_number", + "type": "alias" + }, + "__main__.get_block_timestamp": { + "destination": "starkware.starknet.common.syscalls.get_block_timestamp", + "type": "alias" + }, + "__main__.get_contract_address": { + "destination": "starkware.starknet.common.syscalls.get_contract_address", + "type": "alias" + }, + "__main__.get_deferred_disable_multisig_req": { + "decorators": ["view"], + "pc": 7733, + "type": "function" + }, + "__main__.get_deferred_disable_multisig_req.Args": { + "full_name": "__main__.get_deferred_disable_multisig_req.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.get_deferred_disable_multisig_req.ImplicitArgs": { + "full_name": "__main__.get_deferred_disable_multisig_req.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_deferred_disable_multisig_req.Return": { + "cairo_type": "(deferred_request: src.multisig.library.DeferredMultisigDisableRequest)", + "type": "type_definition" + }, + "__main__.get_deferred_disable_multisig_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.get_deferred_remove_signer_req": { + "decorators": ["view"], + "pc": 7344, + "type": "function" + }, + "__main__.get_deferred_remove_signer_req.Args": { + "full_name": "__main__.get_deferred_remove_signer_req.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.get_deferred_remove_signer_req.ImplicitArgs": { + "full_name": "__main__.get_deferred_remove_signer_req.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_deferred_remove_signer_req.Return": { + "cairo_type": "(deferred_request: src.signers.library.DeferredRemoveSignerRequest)", + "type": "type_definition" + }, + "__main__.get_deferred_remove_signer_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.get_execution_time_delay": { + "decorators": ["view"], + "pc": 7376, + "type": "function" + }, + "__main__.get_execution_time_delay.Args": { + "full_name": "__main__.get_execution_time_delay.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.get_execution_time_delay.ImplicitArgs": { + "full_name": "__main__.get_execution_time_delay.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_execution_time_delay.Return": { + "cairo_type": "(etd_sec: felt)", + "type": "type_definition" + }, + "__main__.get_execution_time_delay.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.get_impl_version": { + "decorators": ["view"], + "pc": 6832, + "type": "function" + }, + "__main__.get_impl_version.Args": { + "full_name": "__main__.get_impl_version.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.get_impl_version.ImplicitArgs": { + "full_name": "__main__.get_impl_version.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_impl_version.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "__main__.get_impl_version.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.get_multisig": { + "decorators": ["view"], + "pc": 7514, + "type": "function" + }, + "__main__.get_multisig.Args": { + "full_name": "__main__.get_multisig.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.get_multisig.ImplicitArgs": { + "full_name": "__main__.get_multisig.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_multisig.Return": { + "cairo_type": "(multisig_num_signers: felt)", + "type": "type_definition" + }, + "__main__.get_multisig.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.get_pending_multisig_transaction": { + "decorators": ["view"], + "pc": 7579, + "type": "function" + }, + "__main__.get_pending_multisig_transaction.Args": { + "full_name": "__main__.get_pending_multisig_transaction.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.get_pending_multisig_transaction.ImplicitArgs": { + "full_name": "__main__.get_pending_multisig_transaction.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_pending_multisig_transaction.Return": { + "cairo_type": "(pending_multisig_transaction: src.multisig.library.PendingMultisigTransaction)", + "type": "type_definition" + }, + "__main__.get_pending_multisig_transaction.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.get_public_key": { + "decorators": ["view"], + "pc": 7220, + "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__.get_signer": { + "decorators": ["view"], + "pc": 7301, + "type": "function" + }, + "__main__.get_signer.Args": { + "full_name": "__main__.get_signer.Args", + "members": { + "index": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.get_signer.ImplicitArgs": { + "full_name": "__main__.get_signer.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_signer.Return": { + "cairo_type": "(signer: src.signers.library.SignerModel)", + "type": "type_definition" + }, + "__main__.get_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.get_signers": { + "decorators": ["view"], + "pc": 7251, + "type": "function" + }, + "__main__.get_signers.Args": { + "full_name": "__main__.get_signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.get_signers.ImplicitArgs": { + "full_name": "__main__.get_signers.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_signers.Return": { + "cairo_type": "(signers_len: felt, signers: src.signers.library.IndexedSignerModel*)", + "type": "type_definition" + }, + "__main__.get_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.get_tx_info": { + "destination": "starkware.starknet.common.syscalls.get_tx_info", + "type": "alias" + }, + "__main__.initializer": { + "decorators": ["external"], + "pc": 6863, + "type": "function" + }, + "__main__.initializer.Args": { + "full_name": "__main__.initializer.Args", + "members": { + "public_key": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.initializer.ImplicitArgs": { + "full_name": "__main__.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" + }, + "__main__.initializer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.initializer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.isValidSignature": { + "decorators": ["view"], + "pc": 7458, + "type": "function" + }, + "__main__.isValidSignature.Args": { + "full_name": "__main__.isValidSignature.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__.isValidSignature.ImplicitArgs": { + "full_name": "__main__.isValidSignature.ImplicitArgs", + "members": { + "ecdsa_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", + "offset": 2 + }, + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 3 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "__main__.isValidSignature.Return": { + "cairo_type": "(isValid: felt)", + "type": "type_definition" + }, + "__main__.isValidSignature.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.is_not_zero": { + "destination": "starkware.cairo.common.math_cmp.is_not_zero", + "type": "alias" + }, + "__main__.is_valid_signature": { + "decorators": ["view"], + "pc": 7409, + "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": 2 + }, + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 3 + }, + "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__.library_call": { + "destination": "starkware.starknet.common.syscalls.library_call", + "type": "alias" + }, + "__main__.migrate_storage": { + "decorators": ["external"], + "pc": 6923, + "type": "function" + }, + "__main__.migrate_storage.Args": { + "full_name": "__main__.migrate_storage.Args", + "members": { + "from_version": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.migrate_storage.ImplicitArgs": { + "full_name": "__main__.migrate_storage.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__.migrate_storage.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.migrate_storage.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.remove_signer": { + "decorators": ["external"], + "pc": 7089, + "type": "function" + }, + "__main__.remove_signer.Args": { + "full_name": "__main__.remove_signer.Args", + "members": { + "index": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.remove_signer.ImplicitArgs": { + "full_name": "__main__.remove_signer.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__.remove_signer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.remove_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.remove_signer_with_etd": { + "decorators": ["external"], + "pc": 7119, + "type": "function" + }, + "__main__.remove_signer_with_etd.Args": { + "full_name": "__main__.remove_signer_with_etd.Args", + "members": { + "index": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.remove_signer_with_etd.ImplicitArgs": { + "full_name": "__main__.remove_signer_with_etd.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__.remove_signer_with_etd.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.remove_signer_with_etd.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.setPublicKey": { + "decorators": ["external"], + "pc": 7059, + "type": "function" + }, + "__main__.setPublicKey.Args": { + "full_name": "__main__.setPublicKey.Args", + "members": { + "newPublicKey": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.setPublicKey.ImplicitArgs": { + "full_name": "__main__.setPublicKey.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__.setPublicKey.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.setPublicKey.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.set_multisig": { + "decorators": ["external"], + "pc": 7545, + "type": "function" + }, + "__main__.set_multisig.Args": { + "full_name": "__main__.set_multisig.Args", + "members": { + "num_signers": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.set_multisig.ImplicitArgs": { + "full_name": "__main__.set_multisig.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_multisig.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.set_multisig.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.sign_pending_multisig_transaction": { + "decorators": ["external"], + "pc": 7614, + "type": "function" + }, + "__main__.sign_pending_multisig_transaction.Args": { + "full_name": "__main__.sign_pending_multisig_transaction.Args", + "members": { + "pending_calldata": { + "cairo_type": "felt*", + "offset": 1 + }, + "pending_calldata_len": { + "cairo_type": "felt", + "offset": 0 + }, + "pending_max_fee": { + "cairo_type": "felt", + "offset": 3 + }, + "pending_nonce": { + "cairo_type": "felt", + "offset": 2 + }, + "pending_transaction_version": { + "cairo_type": "felt", + "offset": 4 + } + }, + "size": 5, + "type": "struct" + }, + "__main__.sign_pending_multisig_transaction.ImplicitArgs": { + "full_name": "__main__.sign_pending_multisig_transaction.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__.sign_pending_multisig_transaction.Return": { + "cairo_type": "(response_len: felt, response: felt*)", + "type": "type_definition" + }, + "__main__.sign_pending_multisig_transaction.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.supportsInterface": { + "decorators": ["view"], + "pc": 6797, + "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 + }, + "__main__.swap_signers": { + "decorators": ["external"], + "pc": 7000, + "type": "function" + }, + "__main__.swap_signers.Args": { + "full_name": "__main__.swap_signers.Args", + "members": { + "added_signer": { + "cairo_type": "src.signers.library.SignerModel", + "offset": 1 + }, + "remove_index": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 8, + "type": "struct" + }, + "__main__.swap_signers.ImplicitArgs": { + "full_name": "__main__.swap_signers.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__.swap_signers.Return": { + "cairo_type": "(signer_id: felt)", + "type": "type_definition" + }, + "__main__.swap_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.upgrade": { + "decorators": ["external"], + "pc": 6895, + "type": "function" + }, + "__main__.upgrade.Args": { + "full_name": "__main__.upgrade.Args", + "members": { + "new_implementation": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.upgrade.ImplicitArgs": { + "full_name": "__main__.upgrade.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__.upgrade.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.upgrade.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.__execute__": { + "decorators": ["external"], + "pc": 8060, + "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: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.__execute__.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "__wrappers__.__execute__.__wrapped_func": { + "destination": "__main__.__execute__", + "type": "alias" + }, + "__wrappers__.__execute___encode_return": { + "decorators": [], + "pc": 8041, + "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__.__validate__": { + "decorators": ["external"], + "pc": 7860, + "type": "function" + }, + "__wrappers__.__validate__.Args": { + "full_name": "__wrappers__.__validate__.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.__validate__.ImplicitArgs": { + "full_name": "__wrappers__.__validate__.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.__validate__.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__.__validate__.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.__validate__.__wrapped_func": { + "destination": "__main__.__validate__", + "type": "alias" + }, + "__wrappers__.__validate___encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.__validate_declare__": { + "decorators": ["external"], + "pc": 7980, + "type": "function" + }, + "__wrappers__.__validate_declare__.Args": { + "full_name": "__wrappers__.__validate_declare__.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.__validate_declare__.ImplicitArgs": { + "full_name": "__wrappers__.__validate_declare__.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.__validate_declare__.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__.__validate_declare__.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.__validate_declare__.__wrapped_func": { + "destination": "__main__.__validate_declare__", + "type": "alias" + }, + "__wrappers__.__validate_declare___encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.__validate_deploy__": { + "decorators": ["external"], + "pc": 7917, + "type": "function" + }, + "__wrappers__.__validate_deploy__.Args": { + "full_name": "__wrappers__.__validate_deploy__.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.__validate_deploy__.ImplicitArgs": { + "full_name": "__wrappers__.__validate_deploy__.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.__validate_deploy__.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__.__validate_deploy__.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.__validate_deploy__.__wrapped_func": { + "destination": "__main__.__validate_deploy__", + "type": "alias" + }, + "__wrappers__.__validate_deploy___encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.add_signer": { + "decorators": ["external"], + "pc": 6975, + "type": "function" + }, + "__wrappers__.add_signer.Args": { + "full_name": "__wrappers__.add_signer.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.add_signer.ImplicitArgs": { + "full_name": "__wrappers__.add_signer.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.add_signer.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__.add_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.add_signer.__wrapped_func": { + "destination": "__main__.add_signer", + "type": "alias" + }, + "__wrappers__.add_signer_encode_return": { + "decorators": [], + "pc": 6966, + "type": "function" + }, + "__wrappers__.add_signer_encode_return.Args": { + "full_name": "__wrappers__.add_signer_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(signer_id: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.add_signer_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.add_signer_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.add_signer_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.add_signer_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.add_signer_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.cancel_deferred_disable_multisig_req": { + "decorators": ["external"], + "pc": 7772, + "type": "function" + }, + "__wrappers__.cancel_deferred_disable_multisig_req.Args": { + "full_name": "__wrappers__.cancel_deferred_disable_multisig_req.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.cancel_deferred_disable_multisig_req.ImplicitArgs": { + "full_name": "__wrappers__.cancel_deferred_disable_multisig_req.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.cancel_deferred_disable_multisig_req.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__.cancel_deferred_disable_multisig_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.cancel_deferred_disable_multisig_req.__wrapped_func": { + "destination": "__main__.cancel_deferred_disable_multisig_req", + "type": "alias" + }, + "__wrappers__.cancel_deferred_disable_multisig_req_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.cancel_deferred_remove_signer_req": { + "decorators": ["external"], + "pc": 7162, + "type": "function" + }, + "__wrappers__.cancel_deferred_remove_signer_req.Args": { + "full_name": "__wrappers__.cancel_deferred_remove_signer_req.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.cancel_deferred_remove_signer_req.ImplicitArgs": { + "full_name": "__wrappers__.cancel_deferred_remove_signer_req.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.cancel_deferred_remove_signer_req.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__.cancel_deferred_remove_signer_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.cancel_deferred_remove_signer_req.__wrapped_func": { + "destination": "__main__.cancel_deferred_remove_signer_req", + "type": "alias" + }, + "__wrappers__.cancel_deferred_remove_signer_req_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.disable_multisig": { + "decorators": ["external"], + "pc": 7691, + "type": "function" + }, + "__wrappers__.disable_multisig.Args": { + "full_name": "__wrappers__.disable_multisig.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.disable_multisig.ImplicitArgs": { + "full_name": "__wrappers__.disable_multisig.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.disable_multisig.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__.disable_multisig.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.disable_multisig.__wrapped_func": { + "destination": "__main__.disable_multisig", + "type": "alias" + }, + "__wrappers__.disable_multisig_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.disable_multisig_with_etd": { + "decorators": ["external"], + "pc": 7717, + "type": "function" + }, + "__wrappers__.disable_multisig_with_etd.Args": { + "full_name": "__wrappers__.disable_multisig_with_etd.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.disable_multisig_with_etd.ImplicitArgs": { + "full_name": "__wrappers__.disable_multisig_with_etd.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.disable_multisig_with_etd.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__.disable_multisig_with_etd.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.disable_multisig_with_etd.__wrapped_func": { + "destination": "__main__.disable_multisig_with_etd", + "type": "alias" + }, + "__wrappers__.disable_multisig_with_etd_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.getPublicKey": { + "decorators": ["view"], + "pc": 7204, + "type": "function" + }, + "__wrappers__.getPublicKey.Args": { + "full_name": "__wrappers__.getPublicKey.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.getPublicKey.ImplicitArgs": { + "full_name": "__wrappers__.getPublicKey.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.getPublicKey.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__.getPublicKey.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.getPublicKey.__wrapped_func": { + "destination": "__main__.getPublicKey", + "type": "alias" + }, + "__wrappers__.getPublicKey_encode_return": { + "decorators": [], + "pc": 7195, + "type": "function" + }, + "__wrappers__.getPublicKey_encode_return.Args": { + "full_name": "__wrappers__.getPublicKey_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(publicKey: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.getPublicKey_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.getPublicKey_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.getPublicKey_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.getPublicKey_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.getPublicKey_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.get_deferred_disable_multisig_req": { + "decorators": ["view"], + "pc": 7748, + "type": "function" + }, + "__wrappers__.get_deferred_disable_multisig_req.Args": { + "full_name": "__wrappers__.get_deferred_disable_multisig_req.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_deferred_disable_multisig_req.ImplicitArgs": { + "full_name": "__wrappers__.get_deferred_disable_multisig_req.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_deferred_disable_multisig_req.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_deferred_disable_multisig_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.get_deferred_disable_multisig_req.__wrapped_func": { + "destination": "__main__.get_deferred_disable_multisig_req", + "type": "alias" + }, + "__wrappers__.get_deferred_disable_multisig_req_encode_return": { + "decorators": [], + "pc": 7739, + "type": "function" + }, + "__wrappers__.get_deferred_disable_multisig_req_encode_return.Args": { + "full_name": "__wrappers__.get_deferred_disable_multisig_req_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(deferred_request: src.multisig.library.DeferredMultisigDisableRequest)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.get_deferred_disable_multisig_req_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.get_deferred_disable_multisig_req_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_deferred_disable_multisig_req_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_deferred_disable_multisig_req_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.get_deferred_disable_multisig_req_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.get_deferred_remove_signer_req": { + "decorators": ["view"], + "pc": 7360, + "type": "function" + }, + "__wrappers__.get_deferred_remove_signer_req.Args": { + "full_name": "__wrappers__.get_deferred_remove_signer_req.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_deferred_remove_signer_req.ImplicitArgs": { + "full_name": "__wrappers__.get_deferred_remove_signer_req.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_deferred_remove_signer_req.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_deferred_remove_signer_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.get_deferred_remove_signer_req.__wrapped_func": { + "destination": "__main__.get_deferred_remove_signer_req", + "type": "alias" + }, + "__wrappers__.get_deferred_remove_signer_req_encode_return": { + "decorators": [], + "pc": 7350, + "type": "function" + }, + "__wrappers__.get_deferred_remove_signer_req_encode_return.Args": { + "full_name": "__wrappers__.get_deferred_remove_signer_req_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "ret_value": { + "cairo_type": "(deferred_request: src.signers.library.DeferredRemoveSignerRequest)", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__wrappers__.get_deferred_remove_signer_req_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.get_deferred_remove_signer_req_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_deferred_remove_signer_req_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_deferred_remove_signer_req_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.get_deferred_remove_signer_req_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.get_execution_time_delay": { + "decorators": ["view"], + "pc": 7393, + "type": "function" + }, + "__wrappers__.get_execution_time_delay.Args": { + "full_name": "__wrappers__.get_execution_time_delay.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_execution_time_delay.ImplicitArgs": { + "full_name": "__wrappers__.get_execution_time_delay.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_execution_time_delay.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_execution_time_delay.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.get_execution_time_delay.__wrapped_func": { + "destination": "__main__.get_execution_time_delay", + "type": "alias" + }, + "__wrappers__.get_execution_time_delay_encode_return": { + "decorators": [], + "pc": 7384, + "type": "function" + }, + "__wrappers__.get_execution_time_delay_encode_return.Args": { + "full_name": "__wrappers__.get_execution_time_delay_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(etd_sec: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.get_execution_time_delay_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.get_execution_time_delay_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_execution_time_delay_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_execution_time_delay_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.get_execution_time_delay_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.get_impl_version": { + "decorators": ["view"], + "pc": 6847, + "type": "function" + }, + "__wrappers__.get_impl_version.Args": { + "full_name": "__wrappers__.get_impl_version.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_impl_version.ImplicitArgs": { + "full_name": "__wrappers__.get_impl_version.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_impl_version.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_impl_version.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.get_impl_version.__wrapped_func": { + "destination": "__main__.get_impl_version", + "type": "alias" + }, + "__wrappers__.get_impl_version_encode_return": { + "decorators": [], + "pc": 6838, + "type": "function" + }, + "__wrappers__.get_impl_version_encode_return.Args": { + "full_name": "__wrappers__.get_impl_version_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_impl_version_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.get_impl_version_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_impl_version_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_impl_version_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.get_impl_version_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.get_multisig": { + "decorators": ["view"], + "pc": 7529, + "type": "function" + }, + "__wrappers__.get_multisig.Args": { + "full_name": "__wrappers__.get_multisig.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_multisig.ImplicitArgs": { + "full_name": "__wrappers__.get_multisig.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_multisig.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_multisig.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.get_multisig.__wrapped_func": { + "destination": "__main__.get_multisig", + "type": "alias" + }, + "__wrappers__.get_multisig_encode_return": { + "decorators": [], + "pc": 7520, + "type": "function" + }, + "__wrappers__.get_multisig_encode_return.Args": { + "full_name": "__wrappers__.get_multisig_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(multisig_num_signers: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.get_multisig_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.get_multisig_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_multisig_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_multisig_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.get_multisig_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.get_pending_multisig_transaction": { + "decorators": ["view"], + "pc": 7598, + "type": "function" + }, + "__wrappers__.get_pending_multisig_transaction.Args": { + "full_name": "__wrappers__.get_pending_multisig_transaction.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_pending_multisig_transaction.ImplicitArgs": { + "full_name": "__wrappers__.get_pending_multisig_transaction.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_pending_multisig_transaction.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_pending_multisig_transaction.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.get_pending_multisig_transaction.__wrapped_func": { + "destination": "__main__.get_pending_multisig_transaction", + "type": "alias" + }, + "__wrappers__.get_pending_multisig_transaction_encode_return": { + "decorators": [], + "pc": 7585, + "type": "function" + }, + "__wrappers__.get_pending_multisig_transaction_encode_return.Args": { + "full_name": "__wrappers__.get_pending_multisig_transaction_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 5 + }, + "ret_value": { + "cairo_type": "(pending_multisig_transaction: src.multisig.library.PendingMultisigTransaction)", + "offset": 0 + } + }, + "size": 6, + "type": "struct" + }, + "__wrappers__.get_pending_multisig_transaction_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.get_pending_multisig_transaction_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_pending_multisig_transaction_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_pending_multisig_transaction_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.get_pending_multisig_transaction_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.get_public_key": { + "decorators": ["view"], + "pc": 7235, + "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": 7226, + "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__.get_signer": { + "decorators": ["view"], + "pc": 7325, + "type": "function" + }, + "__wrappers__.get_signer.Args": { + "full_name": "__wrappers__.get_signer.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_signer.ImplicitArgs": { + "full_name": "__wrappers__.get_signer.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_signer.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_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.get_signer.__wrapped_func": { + "destination": "__main__.get_signer", + "type": "alias" + }, + "__wrappers__.get_signer_encode_return": { + "decorators": [], + "pc": 7310, + "type": "function" + }, + "__wrappers__.get_signer_encode_return.Args": { + "full_name": "__wrappers__.get_signer_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 7 + }, + "ret_value": { + "cairo_type": "(signer: src.signers.library.SignerModel)", + "offset": 0 + } + }, + "size": 8, + "type": "struct" + }, + "__wrappers__.get_signer_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.get_signer_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_signer_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_signer_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.get_signer_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.get_signers": { + "decorators": ["view"], + "pc": 7281, + "type": "function" + }, + "__wrappers__.get_signers.Args": { + "full_name": "__wrappers__.get_signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_signers.ImplicitArgs": { + "full_name": "__wrappers__.get_signers.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_signers.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_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "__wrappers__.get_signers.__wrapped_func": { + "destination": "__main__.get_signers", + "type": "alias" + }, + "__wrappers__.get_signers_encode_return": { + "decorators": [], + "pc": 7259, + "type": "function" + }, + "__wrappers__.get_signers_encode_return.Args": { + "full_name": "__wrappers__.get_signers_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "ret_value": { + "cairo_type": "(signers_len: felt, signers: src.signers.library.IndexedSignerModel*)", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__wrappers__.get_signers_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.get_signers_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_signers_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_signers_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 3 + }, + "__wrappers__.get_signers_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.initializer": { + "decorators": ["external"], + "pc": 6876, + "type": "function" + }, + "__wrappers__.initializer.Args": { + "full_name": "__wrappers__.initializer.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.initializer.ImplicitArgs": { + "full_name": "__wrappers__.initializer.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.initializer.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__.initializer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.initializer.__wrapped_func": { + "destination": "__main__.initializer", + "type": "alias" + }, + "__wrappers__.initializer_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.isValidSignature": { + "decorators": ["view"], + "pc": 7484, + "type": "function" + }, + "__wrappers__.isValidSignature.Args": { + "full_name": "__wrappers__.isValidSignature.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.isValidSignature.ImplicitArgs": { + "full_name": "__wrappers__.isValidSignature.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.isValidSignature.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__.isValidSignature.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.isValidSignature.__wrapped_func": { + "destination": "__main__.isValidSignature", + "type": "alias" + }, + "__wrappers__.isValidSignature_encode_return": { + "decorators": [], + "pc": 7475, + "type": "function" + }, + "__wrappers__.isValidSignature_encode_return.Args": { + "full_name": "__wrappers__.isValidSignature_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(isValid: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.isValidSignature_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.isValidSignature_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.isValidSignature_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.isValidSignature_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.isValidSignature_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.is_valid_signature": { + "decorators": ["view"], + "pc": 7428, + "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": 7419, + "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__.migrate_storage": { + "decorators": ["external"], + "pc": 6932, + "type": "function" + }, + "__wrappers__.migrate_storage.Args": { + "full_name": "__wrappers__.migrate_storage.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.migrate_storage.ImplicitArgs": { + "full_name": "__wrappers__.migrate_storage.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.migrate_storage.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__.migrate_storage.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.migrate_storage.__wrapped_func": { + "destination": "__main__.migrate_storage", + "type": "alias" + }, + "__wrappers__.migrate_storage_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.remove_signer": { + "decorators": ["external"], + "pc": 7100, + "type": "function" + }, + "__wrappers__.remove_signer.Args": { + "full_name": "__wrappers__.remove_signer.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.remove_signer.ImplicitArgs": { + "full_name": "__wrappers__.remove_signer.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.remove_signer.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__.remove_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.remove_signer.__wrapped_func": { + "destination": "__main__.remove_signer", + "type": "alias" + }, + "__wrappers__.remove_signer_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.remove_signer_with_etd": { + "decorators": ["external"], + "pc": 7134, + "type": "function" + }, + "__wrappers__.remove_signer_with_etd.Args": { + "full_name": "__wrappers__.remove_signer_with_etd.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.remove_signer_with_etd.ImplicitArgs": { + "full_name": "__wrappers__.remove_signer_with_etd.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.remove_signer_with_etd.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__.remove_signer_with_etd.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.remove_signer_with_etd.__wrapped_func": { + "destination": "__main__.remove_signer_with_etd", + "type": "alias" + }, + "__wrappers__.remove_signer_with_etd_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.setPublicKey": { + "decorators": ["external"], + "pc": 7070, + "type": "function" + }, + "__wrappers__.setPublicKey.Args": { + "full_name": "__wrappers__.setPublicKey.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.setPublicKey.ImplicitArgs": { + "full_name": "__wrappers__.setPublicKey.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.setPublicKey.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__.setPublicKey.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.setPublicKey.__wrapped_func": { + "destination": "__main__.setPublicKey", + "type": "alias" + }, + "__wrappers__.setPublicKey_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.set_multisig": { + "decorators": ["external"], + "pc": 7560, + "type": "function" + }, + "__wrappers__.set_multisig.Args": { + "full_name": "__wrappers__.set_multisig.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.set_multisig.ImplicitArgs": { + "full_name": "__wrappers__.set_multisig.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.set_multisig.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_multisig.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.set_multisig.__wrapped_func": { + "destination": "__main__.set_multisig", + "type": "alias" + }, + "__wrappers__.set_multisig_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.sign_pending_multisig_transaction": { + "decorators": ["external"], + "pc": 7646, + "type": "function" + }, + "__wrappers__.sign_pending_multisig_transaction.Args": { + "full_name": "__wrappers__.sign_pending_multisig_transaction.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.sign_pending_multisig_transaction.ImplicitArgs": { + "full_name": "__wrappers__.sign_pending_multisig_transaction.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.sign_pending_multisig_transaction.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__.sign_pending_multisig_transaction.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "__wrappers__.sign_pending_multisig_transaction.__wrapped_func": { + "destination": "__main__.sign_pending_multisig_transaction", + "type": "alias" + }, + "__wrappers__.sign_pending_multisig_transaction_encode_return": { + "decorators": [], + "pc": 7627, + "type": "function" + }, + "__wrappers__.sign_pending_multisig_transaction_encode_return.Args": { + "full_name": "__wrappers__.sign_pending_multisig_transaction_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__.sign_pending_multisig_transaction_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.sign_pending_multisig_transaction_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.sign_pending_multisig_transaction_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.sign_pending_multisig_transaction_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 3 + }, + "__wrappers__.sign_pending_multisig_transaction_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.supportsInterface": { + "decorators": ["view"], + "pc": 6813, + "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": 6804, + "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" + }, + "__wrappers__.swap_signers": { + "decorators": ["external"], + "pc": 7033, + "type": "function" + }, + "__wrappers__.swap_signers.Args": { + "full_name": "__wrappers__.swap_signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.swap_signers.ImplicitArgs": { + "full_name": "__wrappers__.swap_signers.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.swap_signers.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__.swap_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.swap_signers.__wrapped_func": { + "destination": "__main__.swap_signers", + "type": "alias" + }, + "__wrappers__.swap_signers_encode_return": { + "decorators": [], + "pc": 7024, + "type": "function" + }, + "__wrappers__.swap_signers_encode_return.Args": { + "full_name": "__wrappers__.swap_signers_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(signer_id: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.swap_signers_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.swap_signers_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.swap_signers_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.swap_signers_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.swap_signers_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.upgrade": { + "decorators": ["external"], + "pc": 6904, + "type": "function" + }, + "__wrappers__.upgrade.Args": { + "full_name": "__wrappers__.upgrade.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.upgrade.ImplicitArgs": { + "full_name": "__wrappers__.upgrade.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.upgrade.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__.upgrade.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.upgrade.__wrapped_func": { + "destination": "__main__.upgrade", + "type": "alias" + }, + "__wrappers__.upgrade_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation": { + "decorators": [], + "pc": 444, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy._set_implementation.Args", + "members": { + "new_implementation": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy._set_implementation.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" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin": { + "decorators": [], + "pc": 459, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin.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" + }, + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy.assert_only_admin.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy.initializer": { + "decorators": [], + "pc": 426, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy.initializer.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.initializer.Args", + "members": { + "proxy_admin": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy.initializer.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.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" + }, + "lib.openzeppelin.upgrades.library.Proxy.initializer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy.initializer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_admin": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.addr": { + "decorators": [], + "pc": 366, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.addr.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.addr.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.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" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.read": { + "decorators": [], + "pc": 371, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.read.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.read.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.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" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.read.Return": { + "cairo_type": "(proxy_admin: felt)", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.write": { + "decorators": [], + "pc": 384, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.write.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.write.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.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" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr": { + "decorators": [], + "pc": 349, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.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" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write": { + "decorators": [], + "pc": 354, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.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" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_initialized.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_initialized.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.addr": { + "decorators": [], + "pc": 396, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.addr.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_initialized.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.addr.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_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" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.read": { + "decorators": [], + "pc": 401, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.read.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_initialized.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.read.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_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" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.read.Return": { + "cairo_type": "(initialized: felt)", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.write": { + "decorators": [], + "pc": 414, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.write.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_initialized.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.write.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_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" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Upgraded": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Upgraded.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Upgraded.SELECTOR": { + "type": "const", + "value": 1291924484015741933195105472014600539495279993452337828418116470835452386035 + }, + "lib.openzeppelin.upgrades.library.Upgraded.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Upgraded.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit": { + "decorators": [], + "pc": 325, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.emit.Args", + "members": { + "implementation": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Upgraded.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.get_caller_address": { + "destination": "starkware.starknet.common.syscalls.get_caller_address", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.bigint.BASE": { + "destination": "lib.secp256r1.src.secp256r1.constants.BASE", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.bigint.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3": { + "decorators": [], + "pc": 515, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3.Args": { + "full_name": "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3.D2_BOUND": { + "type": "const", + "value": 340282366920861092210919271164587016192 + }, + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3.MAX_SUM_BOUND": { + "type": "const", + "value": 340282366920783720958463934897405820928 + }, + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3.Return": { + "cairo_type": "(res: starkware.cairo.common.cairo_secp.bigint.BigInt3)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3.res": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "full_name": "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3.res", + "references": [ + { + "ap_tracking_data": { + "group": 44, + "offset": 0 + }, + "pc": 515, + "value": "[cast(ap + 4, starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.constants.A0": { + "type": "const", + "value": 77371252455336267181195260 + }, + "lib.secp256r1.src.secp256r1.constants.A1": { + "type": "const", + "value": 1023 + }, + "lib.secp256r1.src.secp256r1.constants.A2": { + "type": "const", + "value": 19342813109330467168976896 + }, + "lib.secp256r1.src.secp256r1.constants.B0": { + "type": "const", + "value": 23805269282153275520606283 + }, + "lib.secp256r1.src.secp256r1.constants.B1": { + "type": "const", + "value": 64478498050055519801623345 + }, + "lib.secp256r1.src.secp256r1.constants.B2": { + "type": "const", + "value": 6858709101169761702330043 + }, + "lib.secp256r1.src.secp256r1.constants.BASE": { + "type": "const", + "value": 77371252455336267181195264 + }, + "lib.secp256r1.src.secp256r1.constants.GX0": { + "type": "const", + "value": 52227620040540588600771222 + }, + "lib.secp256r1.src.secp256r1.constants.GX1": { + "type": "const", + "value": 33347259622618539004134583 + }, + "lib.secp256r1.src.secp256r1.constants.GX2": { + "type": "const", + "value": 8091721874918813684698062 + }, + "lib.secp256r1.src.secp256r1.constants.GY0": { + "type": "const", + "value": 59685082318776612195095029 + }, + "lib.secp256r1.src.secp256r1.constants.GY1": { + "type": "const", + "value": 54599710628478995760242092 + }, + "lib.secp256r1.src.secp256r1.constants.GY2": { + "type": "const", + "value": 6036146923926000695307902 + }, + "lib.secp256r1.src.secp256r1.constants.N0": { + "type": "const", + "value": 28553880287938765337601361 + }, + "lib.secp256r1.src.secp256r1.constants.N1": { + "type": "const", + "value": 77371252455335114450843292 + }, + "lib.secp256r1.src.secp256r1.constants.N2": { + "type": "const", + "value": 19342813109330467168976895 + }, + "lib.secp256r1.src.secp256r1.constants.P0": { + "type": "const", + "value": 77371252455336267181195263 + }, + "lib.secp256r1.src.secp256r1.constants.P1": { + "type": "const", + "value": 1023 + }, + "lib.secp256r1.src.secp256r1.constants.P2": { + "type": "const", + "value": 19342813109330467168976896 + }, + "lib.secp256r1.src.secp256r1.constants.SECP_REM": { + "type": "const", + "value": 26959946660873538059280334323183841250350249843923952699046031785985 + }, + "lib.secp256r1.src.secp256r1.constants.SECP_REM0": { + "type": "const", + "value": 1 + }, + "lib.secp256r1.src.secp256r1.constants.SECP_REM1": { + "type": "const", + "value": -1024 + }, + "lib.secp256r1.src.secp256r1.constants.SECP_REM2": { + "type": "const", + "value": 4503599626321920 + }, + "lib.secp256r1.src.secp256r1.constants.r0": { + "type": "const", + "value": 4 + }, + "lib.secp256r1.src.secp256r1.constants.r1": { + "type": "const", + "value": -4096 + }, + "lib.secp256r1.src.secp256r1.constants.r2": { + "type": "const", + "value": 18014398505287680 + }, + "lib.secp256r1.src.secp256r1.constants.s0": { + "type": "const", + "value": 72057594037927936 + }, + "lib.secp256r1.src.secp256r1.constants.s1": { + "type": "const", + "value": -73786976294838206460 + }, + "lib.secp256r1.src.secp256r1.constants.s2": { + "type": "const", + "value": -75557863725914323423232 + }, + "lib.secp256r1.src.secp256r1.ec.A0": { + "destination": "lib.secp256r1.src.secp256r1.constants.A0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.A1": { + "destination": "lib.secp256r1.src.secp256r1.constants.A1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.A2": { + "destination": "lib.secp256r1.src.secp256r1.constants.A2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.B0": { + "destination": "lib.secp256r1.src.secp256r1.constants.B0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.B1": { + "destination": "lib.secp256r1.src.secp256r1.constants.B1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.B2": { + "destination": "lib.secp256r1.src.secp256r1.constants.B2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.EcPoint": { + "destination": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.UnreducedBigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope": { + "decorators": [], + "pc": 701, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope.Args": { + "full_name": "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope.Args", + "members": { + "point": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 0 + } + }, + "size": 6, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope.Return": { + "cairo_type": "(slope: starkware.cairo.common.cairo_secp.bigint.BigInt3)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope.point": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "full_name": "lib.secp256r1.src.secp256r1.ec.compute_doubling_slope.point", + "references": [ + { + "ap_tracking_data": { + "group": 51, + "offset": 0 + }, + "pc": 701, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec.compute_slope": { + "decorators": [], + "pc": 751, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.ec.compute_slope.Args": { + "full_name": "lib.secp256r1.src.secp256r1.ec.compute_slope.Args", + "members": { + "point0": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 0 + }, + "point1": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 6 + } + }, + "size": 12, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.compute_slope.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.ec.compute_slope.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.compute_slope.Return": { + "cairo_type": "(slope: starkware.cairo.common.cairo_secp.bigint.BigInt3)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.ec.compute_slope.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.ec.compute_slope.point0": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "full_name": "lib.secp256r1.src.secp256r1.ec.compute_slope.point0", + "references": [ + { + "ap_tracking_data": { + "group": 52, + "offset": 0 + }, + "pc": 751, + "value": "[cast(fp + (-14), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec.compute_slope.point1": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "full_name": "lib.secp256r1.src.secp256r1.ec.compute_slope.point1", + "references": [ + { + "ap_tracking_data": { + "group": 52, + "offset": 0 + }, + "pc": 751, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec.ec_add": { + "decorators": [], + "pc": 935, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.ec.ec_add.Args": { + "full_name": "lib.secp256r1.src.secp256r1.ec.ec_add.Args", + "members": { + "point0": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 0 + }, + "point1": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 6 + } + }, + "size": 12, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.ec_add.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.ec.ec_add.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.ec_add.Return": { + "cairo_type": "(res: starkware.cairo.common.cairo_secp.ec.EcPoint)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.ec.ec_add.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.ec.ec_double": { + "decorators": [], + "pc": 775, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.ec.ec_double.Args": { + "full_name": "lib.secp256r1.src.secp256r1.ec.ec_double.Args", + "members": { + "point": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 0 + } + }, + "size": 6, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.ec_double.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.ec.ec_double.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.ec_double.Return": { + "cairo_type": "(res: starkware.cairo.common.cairo_secp.ec.EcPoint)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.ec.ec_double.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.ec.ec_double.point": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "full_name": "lib.secp256r1.src.secp256r1.ec.ec_double.point", + "references": [ + { + "ap_tracking_data": { + "group": 53, + "offset": 0 + }, + "pc": 775, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec.ec_double.slope": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "full_name": "lib.secp256r1.src.secp256r1.ec.ec_double.slope", + "references": [ + { + "ap_tracking_data": { + "group": 53, + "offset": 158 + }, + "pc": 798, + "value": "[cast(ap + (-3), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec.fast_ec_add": { + "decorators": [], + "pc": 848, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.ec.fast_ec_add.Args": { + "full_name": "lib.secp256r1.src.secp256r1.ec.fast_ec_add.Args", + "members": { + "point0": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 0 + }, + "point1": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 6 + } + }, + "size": 12, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.fast_ec_add.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.ec.fast_ec_add.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.fast_ec_add.Return": { + "cairo_type": "(res: starkware.cairo.common.cairo_secp.ec.EcPoint)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.ec.fast_ec_add.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.ec.fast_ec_add.point0": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "full_name": "lib.secp256r1.src.secp256r1.ec.fast_ec_add.point0", + "references": [ + { + "ap_tracking_data": { + "group": 54, + "offset": 0 + }, + "pc": 848, + "value": "[cast(fp + (-14), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec.fast_ec_add.point1": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "full_name": "lib.secp256r1.src.secp256r1.ec.fast_ec_add.point1", + "references": [ + { + "ap_tracking_data": { + "group": 54, + "offset": 0 + }, + "pc": 848, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec.fast_ec_add.slope": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "full_name": "lib.secp256r1.src.secp256r1.ec.fast_ec_add.slope", + "references": [ + { + "ap_tracking_data": { + "group": 54, + "offset": 117 + }, + "pc": 891, + "value": "[cast(ap + (-3), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec.is_zero": { + "destination": "lib.secp256r1.src.secp256r1.field.is_zero", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.nondet_bigint3": { + "destination": "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.reduce": { + "destination": "lib.secp256r1.src.secp256r1.field.reduce", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.unreduced_mul": { + "destination": "lib.secp256r1.src.secp256r1.field.unreduced_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.unreduced_sqr": { + "destination": "lib.secp256r1.src.secp256r1.field.unreduced_sqr", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.verify_point": { + "decorators": [], + "pc": 991, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.ec.verify_point.Args": { + "full_name": "lib.secp256r1.src.secp256r1.ec.verify_point.Args", + "members": { + "pt": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 0 + } + }, + "size": 6, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.verify_point.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.ec.verify_point.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec.verify_point.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.ec.verify_point.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.ec.verify_zero": { + "destination": "lib.secp256r1.src.secp256r1.field.verify_zero", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.EcPoint": { + "destination": "lib.secp256r1.src.secp256r1.ec.EcPoint", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.Window": { + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.Window", + "members": { + "G": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 0 + }, + "Q": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 6 + }, + "W10": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 54 + }, + "W11": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 60 + }, + "W12": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 66 + }, + "W13": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 72 + }, + "W14": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 78 + }, + "W15": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 84 + }, + "W3": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 12 + }, + "W4": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 18 + }, + "W5": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 24 + }, + "W6": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 30 + }, + "W7": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 36 + }, + "W8": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 42 + }, + "W9": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 48 + } + }, + "size": 90, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_add": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_add", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_double": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_double", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mul": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner": { + "decorators": [], + "pc": 1232, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.Args": { + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.Args", + "members": { + "Prec": { + "cairo_type": "lib.secp256r1.src.secp256r1.ec_mulmuladd.Window", + "offset": 6 + }, + "R": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 0 + }, + "m": { + "cairo_type": "felt", + "offset": 98 + }, + "scalar_u": { + "cairo_type": "felt", + "offset": 96 + }, + "scalar_v": { + "cairo_type": "felt", + "offset": 97 + } + }, + "size": 99, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.Return": { + "cairo_type": "(res: starkware.cairo.common.cairo_secp.ec.EcPoint)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.m": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.m", + "references": [ + { + "ap_tracking_data": { + "group": 70, + "offset": 0 + }, + "pc": 1232, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.quad_bit": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.quad_bit", + "references": [ + { + "ap_tracking_data": { + "group": 70, + "offset": 1 + }, + "pc": 1234, + "value": "[cast(fp, felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.scalar_u": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.scalar_u", + "references": [ + { + "ap_tracking_data": { + "group": 70, + "offset": 0 + }, + "pc": 1232, + "value": "[cast(fp + (-5), felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.scalar_v": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner.scalar_v", + "references": [ + { + "ap_tracking_data": { + "group": 70, + "offset": 0 + }, + "pc": 1232, + "value": "[cast(fp + (-4), felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner": { + "decorators": [], + "pc": 1042, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.Args": { + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.Args", + "members": { + "G": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 6 + }, + "H": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 18 + }, + "Q": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 12 + }, + "R": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 0 + }, + "m": { + "cairo_type": "felt", + "offset": 26 + }, + "scalar_u": { + "cairo_type": "felt", + "offset": 24 + }, + "scalar_v": { + "cairo_type": "felt", + "offset": 25 + } + }, + "size": 27, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.Return": { + "cairo_type": "(res: starkware.cairo.common.cairo_secp.ec.EcPoint)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.dibit": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.dibit", + "references": [ + { + "ap_tracking_data": { + "group": 62, + "offset": 0 + }, + "pc": 1065, + "value": "[cast(fp, felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.m": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.m", + "references": [ + { + "ap_tracking_data": { + "group": 61, + "offset": 0 + }, + "pc": 1042, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.scalar_u": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.scalar_u", + "references": [ + { + "ap_tracking_data": { + "group": 61, + "offset": 0 + }, + "pc": 1042, + "value": "[cast(fp + (-5), felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.scalar_v": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_inner.scalar_v", + "references": [ + { + "ap_tracking_data": { + "group": 61, + "offset": 0 + }, + "pc": 1042, + "value": "[cast(fp + (-4), felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.EcPoint": { + "destination": "lib.secp256r1.src.secp256r1.ec.EcPoint", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.Window": { + "destination": "lib.secp256r1.src.secp256r1.ec_mulmuladd.Window", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_add": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_add", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_double": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_double", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mul": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3": { + "decorators": [], + "pc": 3137, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.Args": { + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.Args", + "members": { + "G": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 0 + }, + "Q": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 6 + }, + "scalar_u": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 12 + }, + "scalar_v": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 15 + } + }, + "size": 18, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.Return": { + "cairo_type": "(res: starkware.cairo.common.cairo_secp.ec.EcPoint)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.SIZEOF_LOCALS": { + "type": "const", + "value": 171 + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.len_hi": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.len_hi", + "references": [ + { + "ap_tracking_data": { + "group": 105, + "offset": 171 + }, + "pc": 3139, + "value": "[cast(fp, felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.scalar_u": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.scalar_u", + "references": [ + { + "ap_tracking_data": { + "group": 105, + "offset": 0 + }, + "pc": 3137, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.scalar_v": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3.scalar_v", + "references": [ + { + "ap_tracking_data": { + "group": 105, + "offset": 0 + }, + "pc": 3137, + "value": "[cast(fp + (-5), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladd_W_inner": { + "destination": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.BASE": { + "destination": "lib.secp256r1.src.secp256r1.constants.BASE", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.P0": { + "destination": "lib.secp256r1.src.secp256r1.constants.P0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.P1": { + "destination": "lib.secp256r1.src.secp256r1.constants.P1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.P2": { + "destination": "lib.secp256r1.src.secp256r1.constants.P2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.SECP_REM": { + "destination": "lib.secp256r1.src.secp256r1.constants.SECP_REM", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.SECP_REM0": { + "destination": "lib.secp256r1.src.secp256r1.constants.SECP_REM0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.SECP_REM1": { + "destination": "lib.secp256r1.src.secp256r1.constants.SECP_REM1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.SECP_REM2": { + "destination": "lib.secp256r1.src.secp256r1.constants.SECP_REM2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.UnreducedBigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.assert_165_bit": { + "decorators": [], + "pc": 528, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.Args": { + "full_name": "lib.secp256r1.src.secp256r1.field.assert_165_bit.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.HIGH_BOUND": { + "type": "const", + "value": 340282366920938463463374607294329257984 + }, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.field.assert_165_bit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.SHIFT": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.UPPER_BOUND": { + "type": "const", + "value": 46768052394588893382517914646921056628989841375232 + }, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.high": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.field.assert_165_bit.high", + "references": [ + { + "ap_tracking_data": { + "group": 45, + "offset": 0 + }, + "pc": 528, + "value": "[cast([fp + (-4)] + 1, felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.low": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.field.assert_165_bit.low", + "references": [ + { + "ap_tracking_data": { + "group": 45, + "offset": 0 + }, + "pc": 528, + "value": "[cast([fp + (-4)], felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.field.assert_165_bit.value": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.field.assert_165_bit.value", + "references": [ + { + "ap_tracking_data": { + "group": 45, + "offset": 0 + }, + "pc": 528, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.field.is_zero": { + "decorators": [], + "pc": 649, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.field.is_zero.Args": { + "full_name": "lib.secp256r1.src.secp256r1.field.is_zero.Args", + "members": { + "x": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.is_zero.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.field.is_zero.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.is_zero.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.field.is_zero.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.field.is_zero.x": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "full_name": "lib.secp256r1.src.secp256r1.field.is_zero.x", + "references": [ + { + "ap_tracking_data": { + "group": 49, + "offset": 0 + }, + "pc": 649, + "value": "[cast(fp + (-5), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.field.nondet_bigint3": { + "destination": "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.r0": { + "destination": "lib.secp256r1.src.secp256r1.constants.r0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.r1": { + "destination": "lib.secp256r1.src.secp256r1.constants.r1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.r2": { + "destination": "lib.secp256r1.src.secp256r1.constants.r2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.reduce": { + "decorators": [], + "pc": 685, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.field.reduce.Args": { + "full_name": "lib.secp256r1.src.secp256r1.field.reduce.Args", + "members": { + "x": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.reduce.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.field.reduce.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.reduce.Return": { + "cairo_type": "(reduced_x: starkware.cairo.common.cairo_secp.bigint.BigInt3)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.field.reduce.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.field.reduce.x": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "full_name": "lib.secp256r1.src.secp256r1.field.reduce.x", + "references": [ + { + "ap_tracking_data": { + "group": 50, + "offset": 0 + }, + "pc": 685, + "value": "[cast(fp + (-5), starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3*)]" + }, + { + "ap_tracking_data": { + "group": 50, + "offset": 10 + }, + "pc": 688, + "value": "[cast(ap + (-3), starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.field.s0": { + "destination": "lib.secp256r1.src.secp256r1.constants.s0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.s1": { + "destination": "lib.secp256r1.src.secp256r1.constants.s1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.s2": { + "destination": "lib.secp256r1.src.secp256r1.constants.s2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.unreduced_mul": { + "decorators": [], + "pc": 540, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.field.unreduced_mul.Args": { + "full_name": "lib.secp256r1.src.secp256r1.field.unreduced_mul.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 3 + } + }, + "size": 6, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.unreduced_mul.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.field.unreduced_mul.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.unreduced_mul.Return": { + "cairo_type": "(res_low: starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.field.unreduced_mul.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.field.unreduced_sqr": { + "decorators": [], + "pc": 578, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.field.unreduced_sqr.Args": { + "full_name": "lib.secp256r1.src.secp256r1.field.unreduced_sqr.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.unreduced_sqr.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.field.unreduced_sqr.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.unreduced_sqr.Return": { + "cairo_type": "(res_low: starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.field.unreduced_sqr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.field.verify_zero": { + "decorators": [], + "pc": 615, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.field.verify_zero.Args": { + "full_name": "lib.secp256r1.src.secp256r1.field.verify_zero.Args", + "members": { + "val": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.verify_zero.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.field.verify_zero.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.field.verify_zero.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.field.verify_zero.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "lib.secp256r1.src.secp256r1.field.verify_zero.q": { + "cairo_type": "felt", + "full_name": "lib.secp256r1.src.secp256r1.field.verify_zero.q", + "references": [ + { + "ap_tracking_data": { + "group": 48, + "offset": 1 + }, + "pc": 617, + "value": "[cast(fp, felt*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.field.verify_zero.val": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "full_name": "lib.secp256r1.src.secp256r1.field.verify_zero.val", + "references": [ + { + "ap_tracking_data": { + "group": 48, + "offset": 0 + }, + "pc": 615, + "value": "[cast(fp + (-5), starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.signature.A0": { + "destination": "lib.secp256r1.src.secp256r1.constants.A0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.A1": { + "destination": "lib.secp256r1.src.secp256r1.constants.A1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.A2": { + "destination": "lib.secp256r1.src.secp256r1.constants.A2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.B0": { + "destination": "lib.secp256r1.src.secp256r1.constants.B0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.B1": { + "destination": "lib.secp256r1.src.secp256r1.constants.B1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.B2": { + "destination": "lib.secp256r1.src.secp256r1.constants.B2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.BASE": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BASE", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.BitwiseBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.EcPoint": { + "destination": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GX0": { + "destination": "lib.secp256r1.src.secp256r1.constants.GX0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GX1": { + "destination": "lib.secp256r1.src.secp256r1.constants.GX1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GX2": { + "destination": "lib.secp256r1.src.secp256r1.constants.GX2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GY0": { + "destination": "lib.secp256r1.src.secp256r1.constants.GY0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GY1": { + "destination": "lib.secp256r1.src.secp256r1.constants.GY1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GY2": { + "destination": "lib.secp256r1.src.secp256r1.constants.GY2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.N0": { + "destination": "lib.secp256r1.src.secp256r1.constants.N0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.N1": { + "destination": "lib.secp256r1.src.secp256r1.constants.N1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.N2": { + "destination": "lib.secp256r1.src.secp256r1.constants.N2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.RC_BOUND": { + "destination": "starkware.cairo.common.math_cmp.RC_BOUND", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.UnreducedBigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.assert_nn": { + "destination": "starkware.cairo.common.math.assert_nn", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.assert_nn_le": { + "destination": "starkware.cairo.common.math.assert_nn_le", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.bigint_mul": { + "destination": "starkware.cairo.common.cairo_secp.bigint.bigint_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.bitwise_and": { + "destination": "starkware.cairo.common.bitwise.bitwise_and", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.div_mod_n": { + "decorators": [], + "pc": 3810, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.signature.div_mod_n.Args": { + "full_name": "lib.secp256r1.src.secp256r1.signature.div_mod_n.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 3 + } + }, + "size": 6, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.signature.div_mod_n.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.signature.div_mod_n.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.signature.div_mod_n.Return": { + "cairo_type": "(res: starkware.cairo.common.cairo_secp.bigint.BigInt3)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.signature.div_mod_n.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.signature.div_mod_n.a": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "full_name": "lib.secp256r1.src.secp256r1.signature.div_mod_n.a", + "references": [ + { + "ap_tracking_data": { + "group": 123, + "offset": 0 + }, + "pc": 3810, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.signature.div_mod_n.b": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "full_name": "lib.secp256r1.src.secp256r1.signature.div_mod_n.b", + "references": [ + { + "ap_tracking_data": { + "group": 123, + "offset": 0 + }, + "pc": 3810, + "value": "[cast(fp + (-5), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + } + ], + "type": "reference" + }, + "lib.secp256r1.src.secp256r1.signature.ec_add": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_add", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.ec_mul": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.ec_mulmuladdW_bg3": { + "destination": "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.get_generator_point": { + "decorators": [], + "pc": 3797, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.signature.get_generator_point.Args": { + "full_name": "lib.secp256r1.src.secp256r1.signature.get_generator_point.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.signature.get_generator_point.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.signature.get_generator_point.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.signature.get_generator_point.Return": { + "cairo_type": "(point: starkware.cairo.common.cairo_secp.ec.EcPoint)", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.signature.get_generator_point.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.signature.nondet_bigint3": { + "destination": "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.unreduced_mul": { + "destination": "lib.secp256r1.src.secp256r1.field.unreduced_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.unreduced_sqr": { + "destination": "lib.secp256r1.src.secp256r1.field.unreduced_sqr", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.unsigned_div_rem": { + "destination": "starkware.cairo.common.math.unsigned_div_rem", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry": { + "decorators": [], + "pc": 3876, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry.Args": { + "full_name": "lib.secp256r1.src.secp256r1.signature.validate_signature_entry.Args", + "members": { + "val": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.signature.validate_signature_entry.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.signature.validate_signature_entry.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature": { + "decorators": [], + "pc": 3925, + "type": "function" + }, + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature.Args": { + "full_name": "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature.Args", + "members": { + "msg_hash": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 0 + }, + "public_key": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 9 + }, + "r": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 3 + }, + "s": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 6 + } + }, + "size": 15, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature.ImplicitArgs": { + "full_name": "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.secp256r1.src.secp256r1.signature.verify_zero": { + "destination": "lib.secp256r1.src.secp256r1.field.verify_zero", + "type": "alias" + }, + "src.account.library.ACCOUNT_DEFAULT_EXECUTION_TIME_DELAY_SEC": { + "destination": "src.utils.constants.ACCOUNT_DEFAULT_EXECUTION_TIME_DELAY_SEC", + "type": "alias" + }, + "src.account.library.ACCOUNT_IMPL_VERSION": { + "destination": "src.utils.constants.ACCOUNT_IMPL_VERSION", + "type": "alias" + }, + "src.account.library.ADD_SIGNER_SELECTOR": { + "destination": "src.utils.constants.ADD_SIGNER_SELECTOR", + "type": "alias" + }, + "src.account.library.Account": { + "type": "namespace" + }, + "src.account.library.Account.Args": { + "full_name": "src.account.library.Account.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account.ImplicitArgs": { + "full_name": "src.account.library.Account.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account._assert_multicall_valid_inner": { + "decorators": [], + "pc": 5510, + "type": "function" + }, + "src.account.library.Account._assert_multicall_valid_inner.Args": { + "full_name": "src.account.library.Account._assert_multicall_valid_inner.Args", + "members": { + "call_array": { + "cairo_type": "src.account.library.AccountCallArray*", + "offset": 2 + }, + "call_array_len": { + "cairo_type": "felt", + "offset": 1 + }, + "self": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "src.account.library.Account._assert_multicall_valid_inner.ImplicitArgs": { + "full_name": "src.account.library.Account._assert_multicall_valid_inner.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account._assert_multicall_valid_inner.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account._assert_multicall_valid_inner.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account._execute_list": { + "decorators": [], + "pc": 5742, + "type": "function" + }, + "src.account.library.Account._execute_list.Args": { + "full_name": "src.account.library.Account._execute_list.Args", + "members": { + "calls": { + "cairo_type": "src.account.library.Call*", + "offset": 1 + }, + "calls_len": { + "cairo_type": "felt", + "offset": 0 + }, + "response": { + "cairo_type": "felt*", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "src.account.library.Account._execute_list.ImplicitArgs": { + "full_name": "src.account.library.Account._execute_list.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.account.library.Account._execute_list.Return": { + "cairo_type": "(response_len: felt)", + "type": "type_definition" + }, + "src.account.library.Account._execute_list.SIZEOF_LOCALS": { + "type": "const", + "value": 3 + }, + "src.account.library.Account._from_call_array_to_call": { + "decorators": [], + "pc": 5776, + "type": "function" + }, + "src.account.library.Account._from_call_array_to_call.Args": { + "full_name": "src.account.library.Account._from_call_array_to_call.Args", + "members": { + "call_array": { + "cairo_type": "src.account.library.AccountCallArray*", + "offset": 1 + }, + "call_array_len": { + "cairo_type": "felt", + "offset": 0 + }, + "calldata": { + "cairo_type": "felt*", + "offset": 2 + }, + "calls": { + "cairo_type": "src.account.library.Call*", + "offset": 3 + } + }, + "size": 4, + "type": "struct" + }, + "src.account.library.Account._from_call_array_to_call.ImplicitArgs": { + "full_name": "src.account.library.Account._from_call_array_to_call.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.account.library.Account._from_call_array_to_call.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account._from_call_array_to_call.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account._migrate_storage_if_needed": { + "decorators": [], + "pc": 5561, + "type": "function" + }, + "src.account.library.Account._migrate_storage_if_needed.Args": { + "full_name": "src.account.library.Account._migrate_storage_if_needed.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account._migrate_storage_if_needed.ImplicitArgs": { + "full_name": "src.account.library.Account._migrate_storage_if_needed.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" + }, + "src.account.library.Account._migrate_storage_if_needed.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account._migrate_storage_if_needed.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account.account_validate": { + "decorators": [], + "pc": 5698, + "type": "function" + }, + "src.account.library.Account.account_validate.Args": { + "full_name": "src.account.library.Account.account_validate.Args", + "members": { + "call_array": { + "cairo_type": "src.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 + }, + "tx_info": { + "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", + "offset": 4 + } + }, + "size": 5, + "type": "struct" + }, + "src.account.library.Account.account_validate.ImplicitArgs": { + "full_name": "src.account.library.Account.account_validate.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" + }, + "src.account.library.Account.account_validate.Return": { + "cairo_type": "(valid: felt)", + "type": "type_definition" + }, + "src.account.library.Account.account_validate.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account.assert_multicall_valid": { + "decorators": [], + "pc": 5361, + "type": "function" + }, + "src.account.library.Account.assert_multicall_valid.Args": { + "full_name": "src.account.library.Account.assert_multicall_valid.Args", + "members": { + "call_array": { + "cairo_type": "src.account.library.AccountCallArray*", + "offset": 2 + }, + "call_array_len": { + "cairo_type": "felt", + "offset": 1 + }, + "self": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "src.account.library.Account.assert_multicall_valid.ImplicitArgs": { + "full_name": "src.account.library.Account.assert_multicall_valid.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account.assert_multicall_valid.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account.assert_multicall_valid.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account.execute": { + "decorators": [], + "pc": 5715, + "type": "function" + }, + "src.account.library.Account.execute.Args": { + "full_name": "src.account.library.Account.execute.Args", + "members": { + "call_array": { + "cairo_type": "src.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 + } + }, + "size": 4, + "type": "struct" + }, + "src.account.library.Account.execute.ImplicitArgs": { + "full_name": "src.account.library.Account.execute.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" + }, + "src.account.library.Account.execute.Return": { + "cairo_type": "(response_len: felt, response: felt*)", + "type": "type_definition" + }, + "src.account.library.Account.execute.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "src.account.library.Account.get_execution_time_delay": { + "decorators": [], + "pc": 5355, + "type": "function" + }, + "src.account.library.Account.get_execution_time_delay.Args": { + "full_name": "src.account.library.Account.get_execution_time_delay.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account.get_execution_time_delay.ImplicitArgs": { + "full_name": "src.account.library.Account.get_execution_time_delay.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" + }, + "src.account.library.Account.get_execution_time_delay.Return": { + "cairo_type": "(etd_sec: felt)", + "type": "type_definition" + }, + "src.account.library.Account.get_execution_time_delay.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account.initializer": { + "decorators": [], + "pc": 5206, + "type": "function" + }, + "src.account.library.Account.initializer.Args": { + "full_name": "src.account.library.Account.initializer.Args", + "members": { + "public_key": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.account.library.Account.initializer.ImplicitArgs": { + "full_name": "src.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" + }, + "src.account.library.Account.initializer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account.initializer.SIZEOF_LOCALS": { + "type": "const", + "value": 3 + }, + "src.account.library.Account.migrate_storage": { + "decorators": [], + "pc": 5331, + "type": "function" + }, + "src.account.library.Account.migrate_storage.Args": { + "full_name": "src.account.library.Account.migrate_storage.Args", + "members": { + "from_version": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.account.library.Account.migrate_storage.ImplicitArgs": { + "full_name": "src.account.library.Account.migrate_storage.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" + }, + "src.account.library.Account.migrate_storage.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account.migrate_storage.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account.parse_initializer_signature_aux_data": { + "decorators": [], + "pc": 5622, + "type": "function" + }, + "src.account.library.Account.parse_initializer_signature_aux_data.Args": { + "full_name": "src.account.library.Account.parse_initializer_signature_aux_data.Args", + "members": { + "signature": { + "cairo_type": "felt*", + "offset": 1 + }, + "signature_len": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.account.library.Account.parse_initializer_signature_aux_data.ImplicitArgs": { + "full_name": "src.account.library.Account.parse_initializer_signature_aux_data.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account.parse_initializer_signature_aux_data.Return": { + "cairo_type": "(actual_impl: felt, hw_signer: src.signers.library.SignerModel)", + "type": "type_definition" + }, + "src.account.library.Account.parse_initializer_signature_aux_data.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account.supports_interface": { + "decorators": [], + "pc": 5525, + "type": "function" + }, + "src.account.library.Account.supports_interface.Args": { + "full_name": "src.account.library.Account.supports_interface.Args", + "members": { + "interface_id": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.account.library.Account.supports_interface.ImplicitArgs": { + "full_name": "src.account.library.Account.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" + }, + "src.account.library.Account.supports_interface.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "src.account.library.Account.supports_interface.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account.upgrade": { + "decorators": [], + "pc": 5286, + "type": "function" + }, + "src.account.library.Account.upgrade.Args": { + "full_name": "src.account.library.Account.upgrade.Args", + "members": { + "new_implementation": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.account.library.Account.upgrade.ImplicitArgs": { + "full_name": "src.account.library.Account.upgrade.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" + }, + "src.account.library.Account.upgrade.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account.upgrade.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account.validate_deploy": { + "decorators": [], + "pc": 5633, + "type": "function" + }, + "src.account.library.Account.validate_deploy.Args": { + "full_name": "src.account.library.Account.validate_deploy.Args", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 5 + }, + "calldata_len": { + "cairo_type": "felt", + "offset": 4 + }, + "class_hash": { + "cairo_type": "felt", + "offset": 0 + }, + "contract_address_salt": { + "cairo_type": "felt", + "offset": 1 + }, + "implementation_address": { + "cairo_type": "felt", + "offset": 2 + }, + "initializer_selector": { + "cairo_type": "felt", + "offset": 3 + } + }, + "size": 6, + "type": "struct" + }, + "src.account.library.Account.validate_deploy.ImplicitArgs": { + "full_name": "src.account.library.Account.validate_deploy.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" + }, + "src.account.library.Account.validate_deploy.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account.validate_deploy.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.AccountCallArray": { + "full_name": "src.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" + }, + "src.account.library.AccountInitialized": { + "type": "namespace" + }, + "src.account.library.AccountInitialized.Args": { + "full_name": "src.account.library.AccountInitialized.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.AccountInitialized.ImplicitArgs": { + "full_name": "src.account.library.AccountInitialized.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.AccountInitialized.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.AccountInitialized.SELECTOR": { + "type": "const", + "value": 382455535565592867186925905288827112059184245692755099139155826757530483907 + }, + "src.account.library.AccountInitialized.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.AccountInitialized.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.account.library.AccountInitialized.emit": { + "decorators": [], + "pc": 5122, + "type": "function" + }, + "src.account.library.AccountInitialized.emit.Args": { + "full_name": "src.account.library.AccountInitialized.emit.Args", + "members": { + "public_key": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.account.library.AccountInitialized.emit.ImplicitArgs": { + "full_name": "src.account.library.AccountInitialized.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.account.library.AccountInitialized.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.AccountInitialized.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "src.account.library.AccountInitialized.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.account.library.AccountInitialized.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.account.library.Account_execution_time_delay_sec": { + "type": "namespace" + }, + "src.account.library.Account_execution_time_delay_sec.Args": { + "full_name": "src.account.library.Account_execution_time_delay_sec.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_execution_time_delay_sec.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.account.library.Account_execution_time_delay_sec.ImplicitArgs": { + "full_name": "src.account.library.Account_execution_time_delay_sec.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_execution_time_delay_sec.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account_execution_time_delay_sec.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account_execution_time_delay_sec.addr": { + "decorators": [], + "pc": 5146, + "type": "function" + }, + "src.account.library.Account_execution_time_delay_sec.addr.Args": { + "full_name": "src.account.library.Account_execution_time_delay_sec.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_execution_time_delay_sec.addr.ImplicitArgs": { + "full_name": "src.account.library.Account_execution_time_delay_sec.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" + }, + "src.account.library.Account_execution_time_delay_sec.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.account.library.Account_execution_time_delay_sec.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account_execution_time_delay_sec.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.account.library.Account_execution_time_delay_sec.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.account.library.Account_execution_time_delay_sec.read": { + "decorators": [], + "pc": 5151, + "type": "function" + }, + "src.account.library.Account_execution_time_delay_sec.read.Args": { + "full_name": "src.account.library.Account_execution_time_delay_sec.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_execution_time_delay_sec.read.ImplicitArgs": { + "full_name": "src.account.library.Account_execution_time_delay_sec.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" + }, + "src.account.library.Account_execution_time_delay_sec.read.Return": { + "cairo_type": "(etd: felt)", + "type": "type_definition" + }, + "src.account.library.Account_execution_time_delay_sec.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account_execution_time_delay_sec.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.account.library.Account_execution_time_delay_sec.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.account.library.Account_execution_time_delay_sec.write": { + "decorators": [], + "pc": 5164, + "type": "function" + }, + "src.account.library.Account_execution_time_delay_sec.write.Args": { + "full_name": "src.account.library.Account_execution_time_delay_sec.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.account.library.Account_execution_time_delay_sec.write.ImplicitArgs": { + "full_name": "src.account.library.Account_execution_time_delay_sec.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" + }, + "src.account.library.Account_execution_time_delay_sec.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account_execution_time_delay_sec.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account_public_key": { + "destination": "src.signers.library.Account_public_key", + "type": "alias" + }, + "src.account.library.Account_signers": { + "destination": "src.signers.library.Account_signers", + "type": "alias" + }, + "src.account.library.Account_signers_max_index": { + "destination": "src.signers.library.Account_signers_max_index", + "type": "alias" + }, + "src.account.library.Account_storage_migration_version": { + "type": "namespace" + }, + "src.account.library.Account_storage_migration_version.Args": { + "full_name": "src.account.library.Account_storage_migration_version.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_storage_migration_version.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.account.library.Account_storage_migration_version.ImplicitArgs": { + "full_name": "src.account.library.Account_storage_migration_version.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_storage_migration_version.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account_storage_migration_version.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account_storage_migration_version.addr": { + "decorators": [], + "pc": 5176, + "type": "function" + }, + "src.account.library.Account_storage_migration_version.addr.Args": { + "full_name": "src.account.library.Account_storage_migration_version.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_storage_migration_version.addr.ImplicitArgs": { + "full_name": "src.account.library.Account_storage_migration_version.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" + }, + "src.account.library.Account_storage_migration_version.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.account.library.Account_storage_migration_version.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account_storage_migration_version.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.account.library.Account_storage_migration_version.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.account.library.Account_storage_migration_version.read": { + "decorators": [], + "pc": 5181, + "type": "function" + }, + "src.account.library.Account_storage_migration_version.read.Args": { + "full_name": "src.account.library.Account_storage_migration_version.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_storage_migration_version.read.ImplicitArgs": { + "full_name": "src.account.library.Account_storage_migration_version.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" + }, + "src.account.library.Account_storage_migration_version.read.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.account.library.Account_storage_migration_version.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account_storage_migration_version.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.account.library.Account_storage_migration_version.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.account.library.Account_storage_migration_version.write": { + "decorators": [], + "pc": 5194, + "type": "function" + }, + "src.account.library.Account_storage_migration_version.write.Args": { + "full_name": "src.account.library.Account_storage_migration_version.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.account.library.Account_storage_migration_version.write.ImplicitArgs": { + "full_name": "src.account.library.Account_storage_migration_version.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" + }, + "src.account.library.Account_storage_migration_version.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account_storage_migration_version.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.CANCEL_DEFERRED_DISABLE_MULTISIG_REQ_SELECTOR": { + "destination": "src.utils.constants.CANCEL_DEFERRED_DISABLE_MULTISIG_REQ_SELECTOR", + "type": "alias" + }, + "src.account.library.CANCEL_DEFERRED_REMOVE_SIGNER_REQ_SELECTOR": { + "destination": "src.utils.constants.CANCEL_DEFERRED_REMOVE_SIGNER_REQ_SELECTOR", + "type": "alias" + }, + "src.account.library.Call": { + "full_name": "src.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" + }, + "src.account.library.DISABLE_MULTISIG_SELECTOR": { + "destination": "src.utils.constants.DISABLE_MULTISIG_SELECTOR", + "type": "alias" + }, + "src.account.library.DISABLE_MULTISIG_WITH_ETD_SELECTOR": { + "destination": "src.utils.constants.DISABLE_MULTISIG_WITH_ETD_SELECTOR", + "type": "alias" + }, + "src.account.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "src.account.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.account.library.IACCOUNT_ID": { + "destination": "src.utils.constants.IACCOUNT_ID", + "type": "alias" + }, + "src.account.library.IACCOUNT_ID_v0x1010102": { + "destination": "src.utils.constants.IACCOUNT_ID_v0x1010102", + "type": "alias" + }, + "src.account.library.IERC165_ID": { + "destination": "src.utils.constants.IERC165_ID", + "type": "alias" + }, + "src.account.library.MIGRATE_STORAGE_SELECTOR": { + "destination": "src.utils.constants.MIGRATE_STORAGE_SELECTOR", + "type": "alias" + }, + "src.account.library.Migrations": { + "destination": "src.migrations.library.Migrations", + "type": "alias" + }, + "src.account.library.Proxy": { + "destination": "lib.openzeppelin.upgrades.library.Proxy", + "type": "alias" + }, + "src.account.library.REMOVE_SIGNER_SELECTOR": { + "destination": "src.utils.constants.REMOVE_SIGNER_SELECTOR", + "type": "alias" + }, + "src.account.library.REMOVE_SIGNER_WITH_ETD_SELECTOR": { + "destination": "src.utils.constants.REMOVE_SIGNER_WITH_ETD_SELECTOR", + "type": "alias" + }, + "src.account.library.SET_MULTISIG_SELECTOR": { + "destination": "src.utils.constants.SET_MULTISIG_SELECTOR", + "type": "alias" + }, + "src.account.library.SIGNER_TYPE_STARK": { + "destination": "src.utils.constants.SIGNER_TYPE_STARK", + "type": "alias" + }, + "src.account.library.SUPPORTS_INTERFACE_SELECTOR": { + "destination": "src.utils.constants.SUPPORTS_INTERFACE_SELECTOR", + "type": "alias" + }, + "src.account.library.SignatureBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", + "type": "alias" + }, + "src.account.library.SignerModel": { + "destination": "src.signers.library.SignerModel", + "type": "alias" + }, + "src.account.library.Signers": { + "destination": "src.signers.library.Signers", + "type": "alias" + }, + "src.account.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "src.account.library.TxInfo": { + "destination": "starkware.starknet.common.syscalls.TxInfo", + "type": "alias" + }, + "src.account.library.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.account.library.assert_not_equal": { + "destination": "starkware.cairo.common.math.assert_not_equal", + "type": "alias" + }, + "src.account.library.call_contract": { + "destination": "starkware.starknet.common.syscalls.call_contract", + "type": "alias" + }, + "src.account.library.get_tx_info": { + "destination": "starkware.starknet.common.syscalls.get_tx_info", + "type": "alias" + }, + "src.account.library.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.account.library.is_not_zero": { + "destination": "starkware.cairo.common.math_cmp.is_not_zero", + "type": "alias" + }, + "src.account.library.library_call": { + "destination": "starkware.starknet.common.syscalls.library_call", + "type": "alias" + }, + "src.account.library.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.migrations.library.Account_signers": { + "destination": "src.signers.library.Account_signers", + "type": "alias" + }, + "src.migrations.library.Account_signers_max_index": { + "destination": "src.signers.library.Account_signers_max_index", + "type": "alias" + }, + "src.migrations.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "src.migrations.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.migrations.library.LEGACY_SIGNER_TYPE_SECP256R1_SWS": { + "type": "const", + "value": 3 + }, + "src.migrations.library.Migrations": { + "type": "namespace" + }, + "src.migrations.library.Migrations.Args": { + "full_name": "src.migrations.library.Migrations.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.migrations.library.Migrations.ImplicitArgs": { + "full_name": "src.migrations.library.Migrations.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.migrations.library.Migrations.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.migrations.library.Migrations.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.migrations.library.Migrations._migrate_type_3_signers": { + "decorators": [], + "pc": 5070, + "type": "function" + }, + "src.migrations.library.Migrations._migrate_type_3_signers.Args": { + "full_name": "src.migrations.library.Migrations._migrate_type_3_signers.Args", + "members": { + "current_id": { + "cairo_type": "felt", + "offset": 0 + }, + "max_id": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "src.migrations.library.Migrations._migrate_type_3_signers.ImplicitArgs": { + "full_name": "src.migrations.library.Migrations._migrate_type_3_signers.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" + }, + "src.migrations.library.Migrations._migrate_type_3_signers.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.migrations.library.Migrations._migrate_type_3_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.migrations.library.Migrations.migrate_000_000_009": { + "decorators": [], + "pc": 5054, + "type": "function" + }, + "src.migrations.library.Migrations.migrate_000_000_009.Args": { + "full_name": "src.migrations.library.Migrations.migrate_000_000_009.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.migrations.library.Migrations.migrate_000_000_009.ImplicitArgs": { + "full_name": "src.migrations.library.Migrations.migrate_000_000_009.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" + }, + "src.migrations.library.Migrations.migrate_000_000_009.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.migrations.library.Migrations.migrate_000_000_009.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.migrations.library.SIGNER_TYPE_SECP256R1": { + "destination": "src.utils.constants.SIGNER_TYPE_SECP256R1", + "type": "alias" + }, + "src.migrations.library.SignerModel": { + "destination": "src.signers.library.SignerModel", + "type": "alias" + }, + "src.migrations.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "src.migrations.library.is_le_felt": { + "destination": "starkware.cairo.common.math_cmp.is_le_felt", + "type": "alias" + }, + "src.multisig.library.ACCOUNT_DEFAULT_EXECUTION_TIME_DELAY_SEC": { + "destination": "src.utils.constants.ACCOUNT_DEFAULT_EXECUTION_TIME_DELAY_SEC", + "type": "alias" + }, + "src.multisig.library.Account": { + "destination": "src.account.library.Account", + "type": "alias" + }, + "src.multisig.library.AccountCallArray": { + "destination": "src.account.library.AccountCallArray", + "type": "alias" + }, + "src.multisig.library.Account_signers_num_hw_signers": { + "destination": "src.signers.library.Account_signers_num_hw_signers", + "type": "alias" + }, + "src.multisig.library.Call": { + "destination": "src.account.library.Call", + "type": "alias" + }, + "src.multisig.library.DISABLE_MULTISIG_SELECTOR": { + "destination": "src.utils.constants.DISABLE_MULTISIG_SELECTOR", + "type": "alias" + }, + "src.multisig.library.DISABLE_MULTISIG_WITH_ETD_SELECTOR": { + "destination": "src.utils.constants.DISABLE_MULTISIG_WITH_ETD_SELECTOR", + "type": "alias" + }, + "src.multisig.library.DeferredMultisigDisableRequest": { + "full_name": "src.multisig.library.DeferredMultisigDisableRequest", + "members": { + "expire_at": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.multisig.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "src.multisig.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.multisig.library.INVOKE_HASH_PREFIX": { + "destination": "starkware.starknet.common.constants.INVOKE_HASH_PREFIX", + "type": "alias" + }, + "src.multisig.library.MULTISIG_PENDING_TXN_EXPIRY_BLOCK_NUM": { + "destination": "src.utils.constants.MULTISIG_PENDING_TXN_EXPIRY_BLOCK_NUM", + "type": "alias" + }, + "src.multisig.library.MULTISIG_PENDING_TXN_EXPIRY_SEC": { + "destination": "src.utils.constants.MULTISIG_PENDING_TXN_EXPIRY_SEC", + "type": "alias" + }, + "src.multisig.library.Multisig": { + "type": "namespace" + }, + "src.multisig.library.Multisig.Args": { + "full_name": "src.multisig.library.Multisig.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig._compute_hash": { + "decorators": [], + "pc": 6423, + "type": "function" + }, + "src.multisig.library.Multisig._compute_hash.Args": { + "full_name": "src.multisig.library.Multisig._compute_hash.Args", + "members": { + "additional_data": { + "cairo_type": "felt*", + "offset": 7 + }, + "chain_id": { + "cairo_type": "felt", + "offset": 6 + }, + "contract_address": { + "cairo_type": "felt", + "offset": 0 + }, + "pending_calldata": { + "cairo_type": "felt*", + "offset": 2 + }, + "pending_calldata_len": { + "cairo_type": "felt", + "offset": 1 + }, + "pending_max_fee": { + "cairo_type": "felt", + "offset": 4 + }, + "pending_nonce": { + "cairo_type": "felt", + "offset": 3 + }, + "pending_transaction_version": { + "cairo_type": "felt", + "offset": 5 + } + }, + "size": 8, + "type": "struct" + }, + "src.multisig.library.Multisig._compute_hash.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig._compute_hash.ImplicitArgs", + "members": { + "hash_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" + }, + "src.multisig.library.Multisig._compute_hash.Return": { + "cairo_type": "(computed_hash: felt)", + "type": "type_definition" + }, + "src.multisig.library.Multisig._compute_hash.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig.apply_elapsed_etd_requests": { + "decorators": [], + "pc": 6644, + "type": "function" + }, + "src.multisig.library.Multisig.apply_elapsed_etd_requests.Args": { + "full_name": "src.multisig.library.Multisig.apply_elapsed_etd_requests.Args", + "members": { + "block_timestamp": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.multisig.library.Multisig.apply_elapsed_etd_requests.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.apply_elapsed_etd_requests.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" + }, + "src.multisig.library.Multisig.apply_elapsed_etd_requests.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig.apply_elapsed_etd_requests.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req": { + "decorators": [], + "pc": 6536, + "type": "function" + }, + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req.Args": { + "full_name": "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req.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" + }, + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig.cancel_deferred_disable_multisig_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig.disable_multisig": { + "decorators": [], + "pc": 6463, + "type": "function" + }, + "src.multisig.library.Multisig.disable_multisig.Args": { + "full_name": "src.multisig.library.Multisig.disable_multisig.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig.disable_multisig.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.disable_multisig.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" + }, + "src.multisig.library.Multisig.disable_multisig.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig.disable_multisig.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig.disable_multisig_with_etd": { + "decorators": [], + "pc": 6490, + "type": "function" + }, + "src.multisig.library.Multisig.disable_multisig_with_etd.Args": { + "full_name": "src.multisig.library.Multisig.disable_multisig_with_etd.Args", + "members": { + "account_etd": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.multisig.library.Multisig.disable_multisig_with_etd.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.disable_multisig_with_etd.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" + }, + "src.multisig.library.Multisig.disable_multisig_with_etd.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig.disable_multisig_with_etd.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction": { + "decorators": [], + "pc": 6583, + "type": "function" + }, + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction.Args": { + "full_name": "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction.Args", + "members": { + "block_num": { + "cairo_type": "felt", + "offset": 5 + }, + "block_timestamp": { + "cairo_type": "felt", + "offset": 6 + }, + "pending_multisig_txn": { + "cairo_type": "src.multisig.library.PendingMultisigTransaction", + "offset": 0 + } + }, + "size": 7, + "type": "struct" + }, + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction.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" + }, + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction.Return": { + "cairo_type": "(processed_pending_txn: src.multisig.library.PendingMultisigTransaction)", + "type": "type_definition" + }, + "src.multisig.library.Multisig.discard_expired_multisig_pending_transaction.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig.get_deferred_disable_multisig_req": { + "decorators": [], + "pc": 6530, + "type": "function" + }, + "src.multisig.library.Multisig.get_deferred_disable_multisig_req.Args": { + "full_name": "src.multisig.library.Multisig.get_deferred_disable_multisig_req.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig.get_deferred_disable_multisig_req.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.get_deferred_disable_multisig_req.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" + }, + "src.multisig.library.Multisig.get_deferred_disable_multisig_req.Return": { + "cairo_type": "(deferred_request: src.multisig.library.DeferredMultisigDisableRequest)", + "type": "type_definition" + }, + "src.multisig.library.Multisig.get_deferred_disable_multisig_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig.get_multisig_num_signers": { + "decorators": [], + "pc": 6148, + "type": "function" + }, + "src.multisig.library.Multisig.get_multisig_num_signers.Args": { + "full_name": "src.multisig.library.Multisig.get_multisig_num_signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig.get_multisig_num_signers.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.get_multisig_num_signers.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" + }, + "src.multisig.library.Multisig.get_multisig_num_signers.Return": { + "cairo_type": "(multisig_num_signers: felt)", + "type": "type_definition" + }, + "src.multisig.library.Multisig.get_multisig_num_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig.get_pending_multisig_transaction": { + "decorators": [], + "pc": 6265, + "type": "function" + }, + "src.multisig.library.Multisig.get_pending_multisig_transaction.Args": { + "full_name": "src.multisig.library.Multisig.get_pending_multisig_transaction.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig.get_pending_multisig_transaction.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.get_pending_multisig_transaction.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" + }, + "src.multisig.library.Multisig.get_pending_multisig_transaction.Return": { + "cairo_type": "(pending_multisig_transaction: src.multisig.library.PendingMultisigTransaction)", + "type": "type_definition" + }, + "src.multisig.library.Multisig.get_pending_multisig_transaction.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig": { + "decorators": [], + "pc": 6559, + "type": "function" + }, + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig.Args": { + "full_name": "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig.Args", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig.Return": { + "cairo_type": "felt", + "type": "type_definition" + }, + "src.multisig.library.Multisig.is_allowed_selector_for_seed_in_multisig.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig.multisig_execute": { + "decorators": [], + "pc": 6154, + "type": "function" + }, + "src.multisig.library.Multisig.multisig_execute.Args": { + "full_name": "src.multisig.library.Multisig.multisig_execute.Args", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + }, + "tx_info": { + "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "src.multisig.library.Multisig.multisig_execute.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.multisig_execute.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" + }, + "src.multisig.library.Multisig.multisig_execute.Return": { + "cairo_type": "(multisig_deferred: felt)", + "type": "type_definition" + }, + "src.multisig.library.Multisig.multisig_execute.SIZEOF_LOCALS": { + "type": "const", + "value": 16 + }, + "src.multisig.library.Multisig.multisig_validate": { + "decorators": [], + "pc": 6671, + "type": "function" + }, + "src.multisig.library.Multisig.multisig_validate.Args": { + "full_name": "src.multisig.library.Multisig.multisig_validate.Args", + "members": { + "block_num": { + "cairo_type": "felt", + "offset": 6 + }, + "block_timestamp": { + "cairo_type": "felt", + "offset": 5 + }, + "call_array": { + "cairo_type": "src.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 + }, + "tx_info": { + "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", + "offset": 4 + } + }, + "size": 7, + "type": "struct" + }, + "src.multisig.library.Multisig.multisig_validate.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.multisig_validate.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" + }, + "src.multisig.library.Multisig.multisig_validate.Return": { + "cairo_type": "(valid: felt, is_multisig_mode: felt)", + "type": "type_definition" + }, + "src.multisig.library.Multisig.multisig_validate.SIZEOF_LOCALS": { + "type": "const", + "value": 11 + }, + "src.multisig.library.Multisig.set_multisig": { + "decorators": [], + "pc": 6122, + "type": "function" + }, + "src.multisig.library.Multisig.set_multisig.Args": { + "full_name": "src.multisig.library.Multisig.set_multisig.Args", + "members": { + "num_account_signers": { + "cairo_type": "felt", + "offset": 1 + }, + "num_multisig_signers": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.multisig.library.Multisig.set_multisig.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.set_multisig.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" + }, + "src.multisig.library.Multisig.set_multisig.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig.set_multisig.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig.sign_pending_multisig_transaction": { + "decorators": [], + "pc": 6271, + "type": "function" + }, + "src.multisig.library.Multisig.sign_pending_multisig_transaction.Args": { + "full_name": "src.multisig.library.Multisig.sign_pending_multisig_transaction.Args", + "members": { + "pending_calldata": { + "cairo_type": "felt*", + "offset": 1 + }, + "pending_calldata_len": { + "cairo_type": "felt", + "offset": 0 + }, + "pending_max_fee": { + "cairo_type": "felt", + "offset": 3 + }, + "pending_nonce": { + "cairo_type": "felt", + "offset": 2 + }, + "pending_transaction_version": { + "cairo_type": "felt", + "offset": 4 + } + }, + "size": 5, + "type": "struct" + }, + "src.multisig.library.Multisig.sign_pending_multisig_transaction.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig.sign_pending_multisig_transaction.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" + }, + "src.multisig.library.Multisig.sign_pending_multisig_transaction.Return": { + "cairo_type": "(response_len: felt, response: felt*)", + "type": "type_definition" + }, + "src.multisig.library.Multisig.sign_pending_multisig_transaction.SIZEOF_LOCALS": { + "type": "const", + "value": 27 + }, + "src.multisig.library.MultisigDisableRequest": { + "type": "namespace" + }, + "src.multisig.library.MultisigDisableRequest.Args": { + "full_name": "src.multisig.library.MultisigDisableRequest.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.MultisigDisableRequest.ImplicitArgs": { + "full_name": "src.multisig.library.MultisigDisableRequest.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.MultisigDisableRequest.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.MultisigDisableRequest.SELECTOR": { + "type": "const", + "value": 1330841449023103504729364069947715496718452494705736493438700849552670473234 + }, + "src.multisig.library.MultisigDisableRequest.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.MultisigDisableRequest.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.multisig.library.MultisigDisableRequest.emit": { + "decorators": [], + "pc": 5895, + "type": "function" + }, + "src.multisig.library.MultisigDisableRequest.emit.Args": { + "full_name": "src.multisig.library.MultisigDisableRequest.emit.Args", + "members": { + "request": { + "cairo_type": "src.multisig.library.DeferredMultisigDisableRequest", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.multisig.library.MultisigDisableRequest.emit.ImplicitArgs": { + "full_name": "src.multisig.library.MultisigDisableRequest.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.multisig.library.MultisigDisableRequest.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.MultisigDisableRequest.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "src.multisig.library.MultisigDisableRequest.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.multisig.library.MultisigDisableRequest.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.multisig.library.MultisigDisableRequestCancelled": { + "type": "namespace" + }, + "src.multisig.library.MultisigDisableRequestCancelled.Args": { + "full_name": "src.multisig.library.MultisigDisableRequestCancelled.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.MultisigDisableRequestCancelled.ImplicitArgs": { + "full_name": "src.multisig.library.MultisigDisableRequestCancelled.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.MultisigDisableRequestCancelled.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.MultisigDisableRequestCancelled.SELECTOR": { + "type": "const", + "value": 1281552904149320709503579338254189328096488427463082999441118630258410973706 + }, + "src.multisig.library.MultisigDisableRequestCancelled.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.MultisigDisableRequestCancelled.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.multisig.library.MultisigDisableRequestCancelled.emit": { + "decorators": [], + "pc": 5919, + "type": "function" + }, + "src.multisig.library.MultisigDisableRequestCancelled.emit.Args": { + "full_name": "src.multisig.library.MultisigDisableRequestCancelled.emit.Args", + "members": { + "request": { + "cairo_type": "src.multisig.library.DeferredMultisigDisableRequest", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.multisig.library.MultisigDisableRequestCancelled.emit.ImplicitArgs": { + "full_name": "src.multisig.library.MultisigDisableRequestCancelled.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.multisig.library.MultisigDisableRequestCancelled.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.MultisigDisableRequestCancelled.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "src.multisig.library.MultisigDisableRequestCancelled.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.multisig.library.MultisigDisableRequestCancelled.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.multisig.library.MultisigDisabled": { + "type": "namespace" + }, + "src.multisig.library.MultisigDisabled.Args": { + "full_name": "src.multisig.library.MultisigDisabled.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.MultisigDisabled.ImplicitArgs": { + "full_name": "src.multisig.library.MultisigDisabled.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.MultisigDisabled.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.MultisigDisabled.SELECTOR": { + "type": "const", + "value": 359115544612447431475111239021397126357534748548048292263028557417949007965 + }, + "src.multisig.library.MultisigDisabled.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.MultisigDisabled.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.multisig.library.MultisigDisabled.emit": { + "decorators": [], + "pc": 5967, + "type": "function" + }, + "src.multisig.library.MultisigDisabled.emit.Args": { + "full_name": "src.multisig.library.MultisigDisabled.emit.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.MultisigDisabled.emit.ImplicitArgs": { + "full_name": "src.multisig.library.MultisigDisabled.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.multisig.library.MultisigDisabled.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.MultisigDisabled.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "src.multisig.library.MultisigDisabled.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.multisig.library.MultisigDisabled.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.multisig.library.MultisigPendingTransactionSelector": { + "type": "const", + "value": 1076481841203195901192246052515948214390765227783939297815575703989242392013 + }, + "src.multisig.library.MultisigPendingTransactionSignedSelector": { + "type": "const", + "value": 77148960833872616285480930780499646942191152514328985919763224338929016653 + }, + "src.multisig.library.MultisigSet": { + "type": "namespace" + }, + "src.multisig.library.MultisigSet.Args": { + "full_name": "src.multisig.library.MultisigSet.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.MultisigSet.ImplicitArgs": { + "full_name": "src.multisig.library.MultisigSet.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.MultisigSet.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.MultisigSet.SELECTOR": { + "type": "const", + "value": 1133151449524962075212810574202995242547196017492520774924815551504747708067 + }, + "src.multisig.library.MultisigSet.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.MultisigSet.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.multisig.library.MultisigSet.emit": { + "decorators": [], + "pc": 5943, + "type": "function" + }, + "src.multisig.library.MultisigSet.emit.Args": { + "full_name": "src.multisig.library.MultisigSet.emit.Args", + "members": { + "num_signers": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.multisig.library.MultisigSet.emit.ImplicitArgs": { + "full_name": "src.multisig.library.MultisigSet.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.multisig.library.MultisigSet.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.MultisigSet.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "src.multisig.library.MultisigSet.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.multisig.library.MultisigSet.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.multisig.library.Multisig_deferred_disable_request": { + "type": "namespace" + }, + "src.multisig.library.Multisig_deferred_disable_request.Args": { + "full_name": "src.multisig.library.Multisig_deferred_disable_request.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_deferred_disable_request.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.multisig.library.Multisig_deferred_disable_request.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_deferred_disable_request.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_deferred_disable_request.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig_deferred_disable_request.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig_deferred_disable_request.addr": { + "decorators": [], + "pc": 6092, + "type": "function" + }, + "src.multisig.library.Multisig_deferred_disable_request.addr.Args": { + "full_name": "src.multisig.library.Multisig_deferred_disable_request.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_deferred_disable_request.addr.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_deferred_disable_request.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" + }, + "src.multisig.library.Multisig_deferred_disable_request.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.multisig.library.Multisig_deferred_disable_request.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig_deferred_disable_request.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.multisig.library.Multisig_deferred_disable_request.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.multisig.library.Multisig_deferred_disable_request.read": { + "decorators": [], + "pc": 6097, + "type": "function" + }, + "src.multisig.library.Multisig_deferred_disable_request.read.Args": { + "full_name": "src.multisig.library.Multisig_deferred_disable_request.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_deferred_disable_request.read.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_deferred_disable_request.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" + }, + "src.multisig.library.Multisig_deferred_disable_request.read.Return": { + "cairo_type": "(res: src.multisig.library.DeferredMultisigDisableRequest)", + "type": "type_definition" + }, + "src.multisig.library.Multisig_deferred_disable_request.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig_deferred_disable_request.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.multisig.library.Multisig_deferred_disable_request.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.multisig.library.Multisig_deferred_disable_request.write": { + "decorators": [], + "pc": 6110, + "type": "function" + }, + "src.multisig.library.Multisig_deferred_disable_request.write.Args": { + "full_name": "src.multisig.library.Multisig_deferred_disable_request.write.Args", + "members": { + "value": { + "cairo_type": "src.multisig.library.DeferredMultisigDisableRequest", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.multisig.library.Multisig_deferred_disable_request.write.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_deferred_disable_request.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" + }, + "src.multisig.library.Multisig_deferred_disable_request.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig_deferred_disable_request.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig_num_signers": { + "type": "namespace" + }, + "src.multisig.library.Multisig_num_signers.Args": { + "full_name": "src.multisig.library.Multisig_num_signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_num_signers.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.multisig.library.Multisig_num_signers.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_num_signers.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_num_signers.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig_num_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig_num_signers.addr": { + "decorators": [], + "pc": 5988, + "type": "function" + }, + "src.multisig.library.Multisig_num_signers.addr.Args": { + "full_name": "src.multisig.library.Multisig_num_signers.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_num_signers.addr.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_num_signers.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" + }, + "src.multisig.library.Multisig_num_signers.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.multisig.library.Multisig_num_signers.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig_num_signers.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.multisig.library.Multisig_num_signers.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.multisig.library.Multisig_num_signers.read": { + "decorators": [], + "pc": 5993, + "type": "function" + }, + "src.multisig.library.Multisig_num_signers.read.Args": { + "full_name": "src.multisig.library.Multisig_num_signers.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_num_signers.read.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_num_signers.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" + }, + "src.multisig.library.Multisig_num_signers.read.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.multisig.library.Multisig_num_signers.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig_num_signers.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.multisig.library.Multisig_num_signers.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.multisig.library.Multisig_num_signers.write": { + "decorators": [], + "pc": 6006, + "type": "function" + }, + "src.multisig.library.Multisig_num_signers.write.Args": { + "full_name": "src.multisig.library.Multisig_num_signers.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.multisig.library.Multisig_num_signers.write.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_num_signers.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" + }, + "src.multisig.library.Multisig_num_signers.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig_num_signers.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig_pending_transaction": { + "type": "namespace" + }, + "src.multisig.library.Multisig_pending_transaction.Args": { + "full_name": "src.multisig.library.Multisig_pending_transaction.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_pending_transaction.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.multisig.library.Multisig_pending_transaction.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_pending_transaction.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_pending_transaction.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig_pending_transaction.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig_pending_transaction.addr": { + "decorators": [], + "pc": 6018, + "type": "function" + }, + "src.multisig.library.Multisig_pending_transaction.addr.Args": { + "full_name": "src.multisig.library.Multisig_pending_transaction.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_pending_transaction.addr.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_pending_transaction.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" + }, + "src.multisig.library.Multisig_pending_transaction.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.multisig.library.Multisig_pending_transaction.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig_pending_transaction.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.multisig.library.Multisig_pending_transaction.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.multisig.library.Multisig_pending_transaction.read": { + "decorators": [], + "pc": 6023, + "type": "function" + }, + "src.multisig.library.Multisig_pending_transaction.read.Args": { + "full_name": "src.multisig.library.Multisig_pending_transaction.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.multisig.library.Multisig_pending_transaction.read.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_pending_transaction.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" + }, + "src.multisig.library.Multisig_pending_transaction.read.Return": { + "cairo_type": "(res: src.multisig.library.PendingMultisigTransaction)", + "type": "type_definition" + }, + "src.multisig.library.Multisig_pending_transaction.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.Multisig_pending_transaction.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.multisig.library.Multisig_pending_transaction.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.multisig.library.Multisig_pending_transaction.write": { + "decorators": [], + "pc": 6060, + "type": "function" + }, + "src.multisig.library.Multisig_pending_transaction.write.Args": { + "full_name": "src.multisig.library.Multisig_pending_transaction.write.Args", + "members": { + "value": { + "cairo_type": "src.multisig.library.PendingMultisigTransaction", + "offset": 0 + } + }, + "size": 5, + "type": "struct" + }, + "src.multisig.library.Multisig_pending_transaction.write.ImplicitArgs": { + "full_name": "src.multisig.library.Multisig_pending_transaction.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" + }, + "src.multisig.library.Multisig_pending_transaction.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.multisig.library.Multisig_pending_transaction.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.multisig.library.PendingMultisigTransaction": { + "full_name": "src.multisig.library.PendingMultisigTransaction", + "members": { + "expire_at_block_num": { + "cairo_type": "felt", + "offset": 2 + }, + "expire_at_sec": { + "cairo_type": "felt", + "offset": 1 + }, + "is_disable_multisig_transaction": { + "cairo_type": "felt", + "offset": 4 + }, + "signer_1_id": { + "cairo_type": "felt", + "offset": 3 + }, + "transaction_hash": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 5, + "type": "struct" + }, + "src.multisig.library.REMOVE_SIGNER_WITH_ETD_SELECTOR": { + "destination": "src.utils.constants.REMOVE_SIGNER_WITH_ETD_SELECTOR", + "type": "alias" + }, + "src.multisig.library.SIGNER_TYPE_STARK": { + "destination": "src.utils.constants.SIGNER_TYPE_STARK", + "type": "alias" + }, + "src.multisig.library.SIGNER_TYPE_UNUSED": { + "destination": "src.utils.constants.SIGNER_TYPE_UNUSED", + "type": "alias" + }, + "src.multisig.library.SIGN_PENDING_MULTISIG_TXN_SELECTOR": { + "destination": "src.utils.constants.SIGN_PENDING_MULTISIG_TXN_SELECTOR", + "type": "alias" + }, + "src.multisig.library.SignatureBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", + "type": "alias" + }, + "src.multisig.library.Signers": { + "destination": "src.signers.library.Signers", + "type": "alias" + }, + "src.multisig.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "src.multisig.library.TX_VERSION_1_EST_FEE": { + "destination": "src.utils.constants.TX_VERSION_1_EST_FEE", + "type": "alias" + }, + "src.multisig.library.TxInfo": { + "destination": "starkware.starknet.common.syscalls.TxInfo", + "type": "alias" + }, + "src.multisig.library.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.multisig.library.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "src.multisig.library.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.multisig.library.get_block_number": { + "destination": "starkware.starknet.common.syscalls.get_block_number", + "type": "alias" + }, + "src.multisig.library.get_block_timestamp": { + "destination": "starkware.starknet.common.syscalls.get_block_timestamp", + "type": "alias" + }, + "src.multisig.library.get_contract_address": { + "destination": "starkware.starknet.common.syscalls.get_contract_address", + "type": "alias" + }, + "src.multisig.library.get_tx_info": { + "destination": "starkware.starknet.common.syscalls.get_tx_info", + "type": "alias" + }, + "src.multisig.library.hash_finalize": { + "destination": "starkware.cairo.common.hash_state.hash_finalize", + "type": "alias" + }, + "src.multisig.library.hash_init": { + "destination": "starkware.cairo.common.hash_state.hash_init", + "type": "alias" + }, + "src.multisig.library.hash_update": { + "destination": "starkware.cairo.common.hash_state.hash_update", + "type": "alias" + }, + "src.multisig.library.hash_update_single": { + "destination": "starkware.cairo.common.hash_state.hash_update_single", + "type": "alias" + }, + "src.multisig.library.hash_update_with_hashchain": { + "destination": "starkware.cairo.common.hash_state.hash_update_with_hashchain", + "type": "alias" + }, + "src.multisig.library.is_le_felt": { + "destination": "starkware.cairo.common.math_cmp.is_le_felt", + "type": "alias" + }, + "src.multisig.library.is_not_zero": { + "destination": "starkware.cairo.common.math_cmp.is_not_zero", + "type": "alias" + }, + "src.signers.library.Account_deferred_remove_signer": { + "type": "namespace" + }, + "src.signers.library.Account_deferred_remove_signer.Args": { + "full_name": "src.signers.library.Account_deferred_remove_signer.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_deferred_remove_signer.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.Account_deferred_remove_signer.ImplicitArgs": { + "full_name": "src.signers.library.Account_deferred_remove_signer.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_deferred_remove_signer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_deferred_remove_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_deferred_remove_signer.addr": { + "decorators": [], + "pc": 4298, + "type": "function" + }, + "src.signers.library.Account_deferred_remove_signer.addr.Args": { + "full_name": "src.signers.library.Account_deferred_remove_signer.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_deferred_remove_signer.addr.ImplicitArgs": { + "full_name": "src.signers.library.Account_deferred_remove_signer.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" + }, + "src.signers.library.Account_deferred_remove_signer.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.signers.library.Account_deferred_remove_signer.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_deferred_remove_signer.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.signers.library.Account_deferred_remove_signer.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.signers.library.Account_deferred_remove_signer.read": { + "decorators": [], + "pc": 4303, + "type": "function" + }, + "src.signers.library.Account_deferred_remove_signer.read.Args": { + "full_name": "src.signers.library.Account_deferred_remove_signer.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_deferred_remove_signer.read.ImplicitArgs": { + "full_name": "src.signers.library.Account_deferred_remove_signer.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" + }, + "src.signers.library.Account_deferred_remove_signer.read.Return": { + "cairo_type": "(res: src.signers.library.DeferredRemoveSignerRequest)", + "type": "type_definition" + }, + "src.signers.library.Account_deferred_remove_signer.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_deferred_remove_signer.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.signers.library.Account_deferred_remove_signer.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.signers.library.Account_deferred_remove_signer.write": { + "decorators": [], + "pc": 4322, + "type": "function" + }, + "src.signers.library.Account_deferred_remove_signer.write.Args": { + "full_name": "src.signers.library.Account_deferred_remove_signer.write.Args", + "members": { + "value": { + "cairo_type": "src.signers.library.DeferredRemoveSignerRequest", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.signers.library.Account_deferred_remove_signer.write.ImplicitArgs": { + "full_name": "src.signers.library.Account_deferred_remove_signer.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" + }, + "src.signers.library.Account_deferred_remove_signer.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_deferred_remove_signer.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_public_key": { + "type": "namespace" + }, + "src.signers.library.Account_public_key.Args": { + "full_name": "src.signers.library.Account_public_key.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_public_key.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.Account_public_key.ImplicitArgs": { + "full_name": "src.signers.library.Account_public_key.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_public_key.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_public_key.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_public_key.addr": { + "decorators": [], + "pc": 4101, + "type": "function" + }, + "src.signers.library.Account_public_key.addr.Args": { + "full_name": "src.signers.library.Account_public_key.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_public_key.addr.ImplicitArgs": { + "full_name": "src.signers.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" + }, + "src.signers.library.Account_public_key.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.signers.library.Account_public_key.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_public_key.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.signers.library.Account_public_key.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.signers.library.Account_public_key.read": { + "decorators": [], + "pc": 4106, + "type": "function" + }, + "src.signers.library.Account_public_key.read.Args": { + "full_name": "src.signers.library.Account_public_key.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_public_key.read.ImplicitArgs": { + "full_name": "src.signers.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" + }, + "src.signers.library.Account_public_key.read.Return": { + "cairo_type": "(public_key: felt)", + "type": "type_definition" + }, + "src.signers.library.Account_public_key.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_public_key.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.signers.library.Account_public_key.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.signers.library.Account_public_key.write": { + "decorators": [], + "pc": 4119, + "type": "function" + }, + "src.signers.library.Account_public_key.write.Args": { + "full_name": "src.signers.library.Account_public_key.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.signers.library.Account_public_key.write.ImplicitArgs": { + "full_name": "src.signers.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" + }, + "src.signers.library.Account_public_key.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_public_key.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers": { + "type": "namespace" + }, + "src.signers.library.Account_signers.Args": { + "full_name": "src.signers.library.Account_signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.Account_signers.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers.addr": { + "decorators": [], + "pc": 4131, + "type": "function" + }, + "src.signers.library.Account_signers.addr.Args": { + "full_name": "src.signers.library.Account_signers.addr.Args", + "members": { + "idx": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.signers.library.Account_signers.addr.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers.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" + }, + "src.signers.library.Account_signers.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.signers.library.Account_signers.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.signers.library.Account_signers.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.signers.library.Account_signers.read": { + "decorators": [], + "pc": 4145, + "type": "function" + }, + "src.signers.library.Account_signers.read.Args": { + "full_name": "src.signers.library.Account_signers.read.Args", + "members": { + "idx": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.signers.library.Account_signers.read.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers.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" + }, + "src.signers.library.Account_signers.read.Return": { + "cairo_type": "(signer: src.signers.library.SignerModel)", + "type": "type_definition" + }, + "src.signers.library.Account_signers.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.signers.library.Account_signers.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.signers.library.Account_signers.write": { + "decorators": [], + "pc": 4195, + "type": "function" + }, + "src.signers.library.Account_signers.write.Args": { + "full_name": "src.signers.library.Account_signers.write.Args", + "members": { + "idx": { + "cairo_type": "felt", + "offset": 0 + }, + "value": { + "cairo_type": "src.signers.library.SignerModel", + "offset": 1 + } + }, + "size": 8, + "type": "struct" + }, + "src.signers.library.Account_signers.write.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers.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" + }, + "src.signers.library.Account_signers.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_signers.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers_max_index": { + "type": "namespace" + }, + "src.signers.library.Account_signers_max_index.Args": { + "full_name": "src.signers.library.Account_signers_max_index.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_max_index.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.Account_signers_max_index.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers_max_index.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_max_index.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_signers_max_index.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers_max_index.addr": { + "decorators": [], + "pc": 4238, + "type": "function" + }, + "src.signers.library.Account_signers_max_index.addr.Args": { + "full_name": "src.signers.library.Account_signers_max_index.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_max_index.addr.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers_max_index.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" + }, + "src.signers.library.Account_signers_max_index.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.signers.library.Account_signers_max_index.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers_max_index.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.signers.library.Account_signers_max_index.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.signers.library.Account_signers_max_index.read": { + "decorators": [], + "pc": 4243, + "type": "function" + }, + "src.signers.library.Account_signers_max_index.read.Args": { + "full_name": "src.signers.library.Account_signers_max_index.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_max_index.read.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers_max_index.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" + }, + "src.signers.library.Account_signers_max_index.read.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.signers.library.Account_signers_max_index.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers_max_index.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.signers.library.Account_signers_max_index.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.signers.library.Account_signers_max_index.write": { + "decorators": [], + "pc": 4256, + "type": "function" + }, + "src.signers.library.Account_signers_max_index.write.Args": { + "full_name": "src.signers.library.Account_signers_max_index.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.signers.library.Account_signers_max_index.write.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers_max_index.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" + }, + "src.signers.library.Account_signers_max_index.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_signers_max_index.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers_num_hw_signers": { + "type": "namespace" + }, + "src.signers.library.Account_signers_num_hw_signers.Args": { + "full_name": "src.signers.library.Account_signers_num_hw_signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_num_hw_signers.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.Account_signers_num_hw_signers.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers_num_hw_signers.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_num_hw_signers.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_signers_num_hw_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers_num_hw_signers.addr": { + "decorators": [], + "pc": 4268, + "type": "function" + }, + "src.signers.library.Account_signers_num_hw_signers.addr.Args": { + "full_name": "src.signers.library.Account_signers_num_hw_signers.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_num_hw_signers.addr.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers_num_hw_signers.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" + }, + "src.signers.library.Account_signers_num_hw_signers.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.signers.library.Account_signers_num_hw_signers.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers_num_hw_signers.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.signers.library.Account_signers_num_hw_signers.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.signers.library.Account_signers_num_hw_signers.read": { + "decorators": [], + "pc": 4273, + "type": "function" + }, + "src.signers.library.Account_signers_num_hw_signers.read.Args": { + "full_name": "src.signers.library.Account_signers_num_hw_signers.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_num_hw_signers.read.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers_num_hw_signers.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" + }, + "src.signers.library.Account_signers_num_hw_signers.read.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "src.signers.library.Account_signers_num_hw_signers.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers_num_hw_signers.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.signers.library.Account_signers_num_hw_signers.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.signers.library.Account_signers_num_hw_signers.write": { + "decorators": [], + "pc": 4286, + "type": "function" + }, + "src.signers.library.Account_signers_num_hw_signers.write.Args": { + "full_name": "src.signers.library.Account_signers_num_hw_signers.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.signers.library.Account_signers_num_hw_signers.write.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers_num_hw_signers.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" + }, + "src.signers.library.Account_signers_num_hw_signers.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_signers_num_hw_signers.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.DeferredRemoveSignerRequest": { + "full_name": "src.signers.library.DeferredRemoveSignerRequest", + "members": { + "expire_at": { + "cairo_type": "felt", + "offset": 0 + }, + "signer_id": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "src.signers.library.EcPoint": { + "destination": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "type": "alias" + }, + "src.signers.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "src.signers.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.IndexedSignerModel": { + "full_name": "src.signers.library.IndexedSignerModel", + "members": { + "index": { + "cairo_type": "felt", + "offset": 0 + }, + "signer": { + "cairo_type": "src.signers.library.SignerModel", + "offset": 1 + } + }, + "size": 8, + "type": "struct" + }, + "src.signers.library.REMOVE_SIGNER_WITH_ETD_SELECTOR": { + "destination": "src.utils.constants.REMOVE_SIGNER_WITH_ETD_SELECTOR", + "type": "alias" + }, + "src.signers.library.SIGNER_TYPE_SECP256R1": { + "destination": "src.utils.constants.SIGNER_TYPE_SECP256R1", + "type": "alias" + }, + "src.signers.library.SIGNER_TYPE_STARK": { + "destination": "src.utils.constants.SIGNER_TYPE_STARK", + "type": "alias" + }, + "src.signers.library.SIGNER_TYPE_UNUSED": { + "destination": "src.utils.constants.SIGNER_TYPE_UNUSED", + "type": "alias" + }, + "src.signers.library.SignatureBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", + "type": "alias" + }, + "src.signers.library.SignerAdded": { + "type": "namespace" + }, + "src.signers.library.SignerAdded.Args": { + "full_name": "src.signers.library.SignerAdded.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerAdded.ImplicitArgs": { + "full_name": "src.signers.library.SignerAdded.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerAdded.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerAdded.SELECTOR": { + "type": "const", + "value": 561929676041071993352637934143063071236106844429250574418910739341905381029 + }, + "src.signers.library.SignerAdded.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.SignerAdded.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.signers.library.SignerAdded.emit": { + "decorators": [], + "pc": 4021, + "type": "function" + }, + "src.signers.library.SignerAdded.emit.Args": { + "full_name": "src.signers.library.SignerAdded.emit.Args", + "members": { + "signer": { + "cairo_type": "src.signers.library.SignerModel", + "offset": 1 + }, + "signer_id": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 8, + "type": "struct" + }, + "src.signers.library.SignerAdded.emit.ImplicitArgs": { + "full_name": "src.signers.library.SignerAdded.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.signers.library.SignerAdded.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerAdded.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "src.signers.library.SignerAdded.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.signers.library.SignerAdded.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.signers.library.SignerModel": { + "full_name": "src.signers.library.SignerModel", + "members": { + "reserved_0": { + "cairo_type": "felt", + "offset": 5 + }, + "reserved_1": { + "cairo_type": "felt", + "offset": 6 + }, + "signer_0": { + "cairo_type": "felt", + "offset": 0 + }, + "signer_1": { + "cairo_type": "felt", + "offset": 1 + }, + "signer_2": { + "cairo_type": "felt", + "offset": 2 + }, + "signer_3": { + "cairo_type": "felt", + "offset": 3 + }, + "type": { + "cairo_type": "felt", + "offset": 4 + } + }, + "size": 7, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequest": { + "type": "namespace" + }, + "src.signers.library.SignerRemoveRequest.Args": { + "full_name": "src.signers.library.SignerRemoveRequest.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequest.ImplicitArgs": { + "full_name": "src.signers.library.SignerRemoveRequest.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequest.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerRemoveRequest.SELECTOR": { + "type": "const", + "value": 1269813786634352618416790692342807947003436932220265631879446689410606825886 + }, + "src.signers.library.SignerRemoveRequest.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.SignerRemoveRequest.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.signers.library.SignerRemoveRequest.emit": { + "decorators": [], + "pc": 3996, + "type": "function" + }, + "src.signers.library.SignerRemoveRequest.emit.Args": { + "full_name": "src.signers.library.SignerRemoveRequest.emit.Args", + "members": { + "request": { + "cairo_type": "src.signers.library.DeferredRemoveSignerRequest", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequest.emit.ImplicitArgs": { + "full_name": "src.signers.library.SignerRemoveRequest.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequest.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerRemoveRequest.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "src.signers.library.SignerRemoveRequest.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.signers.library.SignerRemoveRequest.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.signers.library.SignerRemoveRequestCancelled": { + "type": "namespace" + }, + "src.signers.library.SignerRemoveRequestCancelled.Args": { + "full_name": "src.signers.library.SignerRemoveRequestCancelled.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequestCancelled.ImplicitArgs": { + "full_name": "src.signers.library.SignerRemoveRequestCancelled.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequestCancelled.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerRemoveRequestCancelled.SELECTOR": { + "type": "const", + "value": 1132521439627317306714359990251828463150347298149907002176878047570125085598 + }, + "src.signers.library.SignerRemoveRequestCancelled.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.SignerRemoveRequestCancelled.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.signers.library.SignerRemoveRequestCancelled.emit": { + "decorators": [], + "pc": 4076, + "type": "function" + }, + "src.signers.library.SignerRemoveRequestCancelled.emit.Args": { + "full_name": "src.signers.library.SignerRemoveRequestCancelled.emit.Args", + "members": { + "request": { + "cairo_type": "src.signers.library.DeferredRemoveSignerRequest", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequestCancelled.emit.ImplicitArgs": { + "full_name": "src.signers.library.SignerRemoveRequestCancelled.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequestCancelled.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerRemoveRequestCancelled.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "src.signers.library.SignerRemoveRequestCancelled.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.signers.library.SignerRemoveRequestCancelled.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.signers.library.SignerRemoved": { + "type": "namespace" + }, + "src.signers.library.SignerRemoved.Args": { + "full_name": "src.signers.library.SignerRemoved.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoved.ImplicitArgs": { + "full_name": "src.signers.library.SignerRemoved.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoved.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerRemoved.SELECTOR": { + "type": "const", + "value": 1078657755298128285518989235278250467094441506009905078130589280936907098425 + }, + "src.signers.library.SignerRemoved.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.SignerRemoved.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.signers.library.SignerRemoved.emit": { + "decorators": [], + "pc": 4052, + "type": "function" + }, + "src.signers.library.SignerRemoved.emit.Args": { + "full_name": "src.signers.library.SignerRemoved.emit.Args", + "members": { + "signer_id": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.signers.library.SignerRemoved.emit.ImplicitArgs": { + "full_name": "src.signers.library.SignerRemoved.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.signers.library.SignerRemoved.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerRemoved.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "src.signers.library.SignerRemoved.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.signers.library.SignerRemoved.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.signers.library.Signers": { + "type": "namespace" + }, + "src.signers.library.Signers.Args": { + "full_name": "src.signers.library.Signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Signers.ImplicitArgs": { + "full_name": "src.signers.library.Signers.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Signers.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers._authorize_signer": { + "decorators": [], + "pc": 4837, + "type": "function" + }, + "src.signers.library.Signers._authorize_signer.Args": { + "full_name": "src.signers.library.Signers._authorize_signer.Args", + "members": { + "block_timestamp": { + "cairo_type": "felt", + "offset": 6 + }, + "call_0_sel": { + "cairo_type": "felt", + "offset": 5 + }, + "call_0_to": { + "cairo_type": "felt", + "offset": 4 + }, + "call_array_len": { + "cairo_type": "felt", + "offset": 3 + }, + "in_multisig_mode": { + "cairo_type": "felt", + "offset": 7 + }, + "self": { + "cairo_type": "felt", + "offset": 0 + }, + "signature": { + "cairo_type": "felt*", + "offset": 2 + }, + "signature_len": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 8, + "type": "struct" + }, + "src.signers.library.Signers._authorize_signer.ImplicitArgs": { + "full_name": "src.signers.library.Signers._authorize_signer.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" + }, + "src.signers.library.Signers._authorize_signer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Signers._authorize_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers._get_signers_inner": { + "decorators": [], + "pc": 4360, + "type": "function" + }, + "src.signers.library.Signers._get_signers_inner.Args": { + "full_name": "src.signers.library.Signers._get_signers_inner.Args", + "members": { + "current_id": { + "cairo_type": "felt", + "offset": 0 + }, + "max_id": { + "cairo_type": "felt", + "offset": 1 + }, + "signers": { + "cairo_type": "src.signers.library.IndexedSignerModel*", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "src.signers.library.Signers._get_signers_inner.ImplicitArgs": { + "full_name": "src.signers.library.Signers._get_signers_inner.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" + }, + "src.signers.library.Signers._get_signers_inner.Return": { + "cairo_type": "(num_signers: felt)", + "type": "type_definition" + }, + "src.signers.library.Signers._get_signers_inner.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers._is_valid_secp256r1_signature": { + "decorators": [], + "pc": 4897, + "type": "function" + }, + "src.signers.library.Signers._is_valid_secp256r1_signature.Args": { + "full_name": "src.signers.library.Signers._is_valid_secp256r1_signature.Args", + "members": { + "hash": { + "cairo_type": "felt", + "offset": 7 + }, + "signature": { + "cairo_type": "felt*", + "offset": 9 + }, + "signature_len": { + "cairo_type": "felt", + "offset": 8 + }, + "signer": { + "cairo_type": "src.signers.library.SignerModel", + "offset": 0 + } + }, + "size": 10, + "type": "struct" + }, + "src.signers.library.Signers._is_valid_secp256r1_signature.ImplicitArgs": { + "full_name": "src.signers.library.Signers._is_valid_secp256r1_signature.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" + }, + "src.signers.library.Signers._is_valid_secp256r1_signature.Return": { + "cairo_type": "(is_valid: felt)", + "type": "type_definition" + }, + "src.signers.library.Signers._is_valid_secp256r1_signature.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers._is_valid_stark_signature": { + "decorators": [], + "pc": 4883, + "type": "function" + }, + "src.signers.library.Signers._is_valid_stark_signature.Args": { + "full_name": "src.signers.library.Signers._is_valid_stark_signature.Args", + "members": { + "hash": { + "cairo_type": "felt", + "offset": 1 + }, + "public_key": { + "cairo_type": "felt", + "offset": 0 + }, + "signature": { + "cairo_type": "felt*", + "offset": 3 + }, + "signature_len": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "src.signers.library.Signers._is_valid_stark_signature.ImplicitArgs": { + "full_name": "src.signers.library.Signers._is_valid_stark_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" + }, + "src.signers.library.Signers._is_valid_stark_signature.Return": { + "cairo_type": "(is_valid: felt)", + "type": "type_definition" + }, + "src.signers.library.Signers._is_valid_stark_signature.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers.add_signer": { + "decorators": [], + "pc": 4422, + "type": "function" + }, + "src.signers.library.Signers.add_signer.Args": { + "full_name": "src.signers.library.Signers.add_signer.Args", + "members": { + "signer": { + "cairo_type": "src.signers.library.SignerModel", + "offset": 0 + } + }, + "size": 7, + "type": "struct" + }, + "src.signers.library.Signers.add_signer.ImplicitArgs": { + "full_name": "src.signers.library.Signers.add_signer.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" + }, + "src.signers.library.Signers.add_signer.Return": { + "cairo_type": "(signer_id: felt)", + "type": "type_definition" + }, + "src.signers.library.Signers.add_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers.apply_elapsed_etd_requests": { + "decorators": [], + "pc": 4761, + "type": "function" + }, + "src.signers.library.Signers.apply_elapsed_etd_requests.Args": { + "full_name": "src.signers.library.Signers.apply_elapsed_etd_requests.Args", + "members": { + "block_timestamp": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.signers.library.Signers.apply_elapsed_etd_requests.ImplicitArgs": { + "full_name": "src.signers.library.Signers.apply_elapsed_etd_requests.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" + }, + "src.signers.library.Signers.apply_elapsed_etd_requests.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Signers.apply_elapsed_etd_requests.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers.cancel_deferred_remove_signer_req": { + "decorators": [], + "pc": 4691, + "type": "function" + }, + "src.signers.library.Signers.cancel_deferred_remove_signer_req.Args": { + "full_name": "src.signers.library.Signers.cancel_deferred_remove_signer_req.Args", + "members": { + "removed_signer_id": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.signers.library.Signers.cancel_deferred_remove_signer_req.ImplicitArgs": { + "full_name": "src.signers.library.Signers.cancel_deferred_remove_signer_req.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" + }, + "src.signers.library.Signers.cancel_deferred_remove_signer_req.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Signers.cancel_deferred_remove_signer_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers.get_deferred_remove_signer_req": { + "decorators": [], + "pc": 4685, + "type": "function" + }, + "src.signers.library.Signers.get_deferred_remove_signer_req.Args": { + "full_name": "src.signers.library.Signers.get_deferred_remove_signer_req.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Signers.get_deferred_remove_signer_req.ImplicitArgs": { + "full_name": "src.signers.library.Signers.get_deferred_remove_signer_req.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" + }, + "src.signers.library.Signers.get_deferred_remove_signer_req.Return": { + "cairo_type": "(deferred_request: src.signers.library.DeferredRemoveSignerRequest)", + "type": "type_definition" + }, + "src.signers.library.Signers.get_deferred_remove_signer_req.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers.get_signer": { + "decorators": [], + "pc": 4415, + "type": "function" + }, + "src.signers.library.Signers.get_signer.Args": { + "full_name": "src.signers.library.Signers.get_signer.Args", + "members": { + "index": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.signers.library.Signers.get_signer.ImplicitArgs": { + "full_name": "src.signers.library.Signers.get_signer.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" + }, + "src.signers.library.Signers.get_signer.Return": { + "cairo_type": "(signer: src.signers.library.SignerModel)", + "type": "type_definition" + }, + "src.signers.library.Signers.get_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers.get_signers": { + "decorators": [], + "pc": 4339, + "type": "function" + }, + "src.signers.library.Signers.get_signers.Args": { + "full_name": "src.signers.library.Signers.get_signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Signers.get_signers.ImplicitArgs": { + "full_name": "src.signers.library.Signers.get_signers.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" + }, + "src.signers.library.Signers.get_signers.Return": { + "cairo_type": "(signers_len: felt, signers: src.signers.library.IndexedSignerModel*)", + "type": "type_definition" + }, + "src.signers.library.Signers.get_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "src.signers.library.Signers.is_valid_signature": { + "decorators": [], + "pc": 4954, + "type": "function" + }, + "src.signers.library.Signers.is_valid_signature.Args": { + "full_name": "src.signers.library.Signers.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" + }, + "src.signers.library.Signers.is_valid_signature.ImplicitArgs": { + "full_name": "src.signers.library.Signers.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" + }, + "src.signers.library.Signers.is_valid_signature.Return": { + "cairo_type": "(is_valid: felt)", + "type": "type_definition" + }, + "src.signers.library.Signers.is_valid_signature.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers.remove_signer": { + "decorators": [], + "pc": 4558, + "type": "function" + }, + "src.signers.library.Signers.remove_signer.Args": { + "full_name": "src.signers.library.Signers.remove_signer.Args", + "members": { + "index": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.signers.library.Signers.remove_signer.ImplicitArgs": { + "full_name": "src.signers.library.Signers.remove_signer.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" + }, + "src.signers.library.Signers.remove_signer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Signers.remove_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers.remove_signer_with_etd": { + "decorators": [], + "pc": 4630, + "type": "function" + }, + "src.signers.library.Signers.remove_signer_with_etd.Args": { + "full_name": "src.signers.library.Signers.remove_signer_with_etd.Args", + "members": { + "account_etd": { + "cairo_type": "felt", + "offset": 1 + }, + "index": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.signers.library.Signers.remove_signer_with_etd.ImplicitArgs": { + "full_name": "src.signers.library.Signers.remove_signer_with_etd.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" + }, + "src.signers.library.Signers.remove_signer_with_etd.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Signers.remove_signer_with_etd.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers.resolve_signer_from_sig": { + "decorators": [], + "pc": 4719, + "type": "function" + }, + "src.signers.library.Signers.resolve_signer_from_sig.Args": { + "full_name": "src.signers.library.Signers.resolve_signer_from_sig.Args", + "members": { + "signature": { + "cairo_type": "felt*", + "offset": 1 + }, + "signature_len": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.signers.library.Signers.resolve_signer_from_sig.ImplicitArgs": { + "full_name": "src.signers.library.Signers.resolve_signer_from_sig.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" + }, + "src.signers.library.Signers.resolve_signer_from_sig.Return": { + "cairo_type": "(signer: src.signers.library.IndexedSignerModel)", + "type": "type_definition" + }, + "src.signers.library.Signers.resolve_signer_from_sig.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers.signers_validate": { + "decorators": [], + "pc": 4790, + "type": "function" + }, + "src.signers.library.Signers.signers_validate.Args": { + "full_name": "src.signers.library.Signers.signers_validate.Args", + "members": { + "block_num": { + "cairo_type": "felt", + "offset": 7 + }, + "block_timestamp": { + "cairo_type": "felt", + "offset": 6 + }, + "call_0_sel": { + "cairo_type": "felt", + "offset": 2 + }, + "call_0_to": { + "cairo_type": "felt", + "offset": 1 + }, + "call_array_len": { + "cairo_type": "felt", + "offset": 0 + }, + "calldata": { + "cairo_type": "felt*", + "offset": 4 + }, + "calldata_len": { + "cairo_type": "felt", + "offset": 3 + }, + "in_multisig_mode": { + "cairo_type": "felt", + "offset": 8 + }, + "tx_info": { + "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", + "offset": 5 + } + }, + "size": 9, + "type": "struct" + }, + "src.signers.library.Signers.signers_validate.ImplicitArgs": { + "full_name": "src.signers.library.Signers.signers_validate.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" + }, + "src.signers.library.Signers.signers_validate.Return": { + "cairo_type": "(valid: felt)", + "type": "type_definition" + }, + "src.signers.library.Signers.signers_validate.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Signers.swap_signers": { + "decorators": [], + "pc": 4506, + "type": "function" + }, + "src.signers.library.Signers.swap_signers.Args": { + "full_name": "src.signers.library.Signers.swap_signers.Args", + "members": { + "added_signer": { + "cairo_type": "src.signers.library.SignerModel", + "offset": 1 + }, + "in_multisig_mode": { + "cairo_type": "felt", + "offset": 8 + }, + "remove_index": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 9, + "type": "struct" + }, + "src.signers.library.Signers.swap_signers.ImplicitArgs": { + "full_name": "src.signers.library.Signers.swap_signers.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" + }, + "src.signers.library.Signers.swap_signers.Return": { + "cairo_type": "(signer_id: felt)", + "type": "type_definition" + }, + "src.signers.library.Signers.swap_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "src.signers.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "src.signers.library.TX_VERSION_1_EST_FEE": { + "destination": "src.utils.constants.TX_VERSION_1_EST_FEE", + "type": "alias" + }, + "src.signers.library.TxInfo": { + "destination": "starkware.starknet.common.syscalls.TxInfo", + "type": "alias" + }, + "src.signers.library.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "src.signers.library.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.signers.library.assert_not_equal": { + "destination": "starkware.cairo.common.math.assert_not_equal", + "type": "alias" + }, + "src.signers.library.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "src.signers.library.get_block_timestamp": { + "destination": "starkware.starknet.common.syscalls.get_block_timestamp", + "type": "alias" + }, + "src.signers.library.get_tx_info": { + "destination": "starkware.starknet.common.syscalls.get_tx_info", + "type": "alias" + }, + "src.signers.library.is_le_felt": { + "destination": "starkware.cairo.common.math_cmp.is_le_felt", + "type": "alias" + }, + "src.signers.library.is_not_zero": { + "destination": "starkware.cairo.common.math_cmp.is_not_zero", + "type": "alias" + }, + "src.signers.library.split_felt": { + "destination": "starkware.cairo.common.math.split_felt", + "type": "alias" + }, + "src.signers.library.uint256_check": { + "destination": "starkware.cairo.common.uint256.uint256_check", + "type": "alias" + }, + "src.signers.library.uint256_to_bigint": { + "destination": "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint", + "type": "alias" + }, + "src.signers.library.verify_ecdsa_signature": { + "destination": "starkware.cairo.common.signature.verify_ecdsa_signature", + "type": "alias" + }, + "src.signers.library.verify_point": { + "destination": "lib.secp256r1.src.secp256r1.ec.verify_point", + "type": "alias" + }, + "src.signers.library.verify_secp256r1_signature": { + "destination": "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature", + "type": "alias" + }, + "src.utils.Guards.Guards": { + "type": "namespace" + }, + "src.utils.Guards.Guards.Args": { + "full_name": "src.utils.Guards.Guards.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.utils.Guards.Guards.ImplicitArgs": { + "full_name": "src.utils.Guards.Guards.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.utils.Guards.Guards.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.utils.Guards.Guards.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.utils.Guards.Guards.assert_no_reentrance": { + "decorators": [], + "pc": 6778, + "type": "function" + }, + "src.utils.Guards.Guards.assert_no_reentrance.Args": { + "full_name": "src.utils.Guards.Guards.assert_no_reentrance.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.utils.Guards.Guards.assert_no_reentrance.ImplicitArgs": { + "full_name": "src.utils.Guards.Guards.assert_no_reentrance.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.utils.Guards.Guards.assert_no_reentrance.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.utils.Guards.Guards.assert_no_reentrance.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.utils.Guards.Guards.assert_only_self": { + "decorators": [], + "pc": 6769, + "type": "function" + }, + "src.utils.Guards.Guards.assert_only_self.Args": { + "full_name": "src.utils.Guards.Guards.assert_only_self.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.utils.Guards.Guards.assert_only_self.ImplicitArgs": { + "full_name": "src.utils.Guards.Guards.assert_only_self.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.utils.Guards.Guards.assert_only_self.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.utils.Guards.Guards.assert_only_self.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.utils.Guards.Guards.assert_valid_transaction_version": { + "decorators": [], + "pc": 6785, + "type": "function" + }, + "src.utils.Guards.Guards.assert_valid_transaction_version.Args": { + "full_name": "src.utils.Guards.Guards.assert_valid_transaction_version.Args", + "members": { + "tx_info": { + "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.utils.Guards.Guards.assert_valid_transaction_version.ImplicitArgs": { + "full_name": "src.utils.Guards.Guards.assert_valid_transaction_version.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "src.utils.Guards.Guards.assert_valid_transaction_version.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.utils.Guards.Guards.assert_valid_transaction_version.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.utils.Guards.TX_VERSION_0_EST_FEE": { + "destination": "src.utils.constants.TX_VERSION_0_EST_FEE", + "type": "alias" + }, + "src.utils.Guards.TxInfo": { + "destination": "starkware.starknet.common.syscalls.TxInfo", + "type": "alias" + }, + "src.utils.Guards.assert_not_equal": { + "destination": "starkware.cairo.common.math.assert_not_equal", + "type": "alias" + }, + "src.utils.Guards.get_caller_address": { + "destination": "starkware.starknet.common.syscalls.get_caller_address", + "type": "alias" + }, + "src.utils.Guards.get_contract_address": { + "destination": "starkware.starknet.common.syscalls.get_contract_address", + "type": "alias" + }, + "src.utils.Guards.get_tx_info": { + "destination": "starkware.starknet.common.syscalls.get_tx_info", + "type": "alias" + }, + "src.utils.constants.ACCOUNT_DEFAULT_EXECUTION_TIME_DELAY_SEC": { + "type": "const", + "value": 345600 + }, + "src.utils.constants.ACCOUNT_IMPL_VERSION": { + "type": "const", + "value": 58256001704608589532901680 + }, + "src.utils.constants.ADD_SIGNER_SELECTOR": { + "type": "const", + "value": 163160470112599928456934797768840367968245733614578848060926957836914140077 + }, + "src.utils.constants.CANCEL_DEFERRED_DISABLE_MULTISIG_REQ_SELECTOR": { + "type": "const", + "value": 2368085011737712558832061853528991504353100933681333270721786327191901518 + }, + "src.utils.constants.CANCEL_DEFERRED_REMOVE_SIGNER_REQ_SELECTOR": { + "type": "const", + "value": 269717755689401876173711085406697014939272590112879486617649727631382791657 + }, + "src.utils.constants.DISABLE_MULTISIG_SELECTOR": { + "type": "const", + "value": 1758259583752551939040810879209073852335166648624686940608467553891753933031 + }, + "src.utils.constants.DISABLE_MULTISIG_WITH_ETD_SELECTOR": { + "type": "const", + "value": 174813914610141181835653391265740007128686786058622343737933013940855989184 + }, + "src.utils.constants.IACCOUNT_ID": { + "type": "const", + "value": 2792084853 + }, + "src.utils.constants.IACCOUNT_ID_v0x1010102": { + "type": "const", + "value": 4044209476 + }, + "src.utils.constants.IERC165_ID": { + "type": "const", + "value": 33540519 + }, + "src.utils.constants.IERC721_ENUMERABLE_ID": { + "type": "const", + "value": 2014223715 + }, + "src.utils.constants.IERC721_ID": { + "type": "const", + "value": 2158778573 + }, + "src.utils.constants.IERC721_METADATA_ID": { + "type": "const", + "value": 1532892063 + }, + "src.utils.constants.IERC721_RECEIVER_ID": { + "type": "const", + "value": 353073666 + }, + "src.utils.constants.INITIALIZER_SELECTOR": { + "type": "const", + "value": 1295919550572838631247819983596733806859788957403169325509326258146877103642 + }, + "src.utils.constants.INVALID_ID": { + "type": "const", + "value": 4294967295 + }, + "src.utils.constants.MIGRATE_STORAGE_SELECTOR": { + "type": "const", + "value": 522038773094464137401434129447374078914611256157886368771002985264489953033 + }, + "src.utils.constants.MULTISIG_PENDING_TXN_EXPIRY_BLOCK_NUM": { + "type": "const", + "value": 3 + }, + "src.utils.constants.MULTISIG_PENDING_TXN_EXPIRY_SEC": { + "type": "const", + "value": 300 + }, + "src.utils.constants.REMOVE_SIGNER_SELECTOR": { + "type": "const", + "value": 409261550851542507680168322314239740979393570425390024668899463010292902806 + }, + "src.utils.constants.REMOVE_SIGNER_WITH_ETD_SELECTOR": { + "type": "const", + "value": 1189488687767662123356698053193137082046618410956870915062359977563328943793 + }, + "src.utils.constants.SET_MULTISIG_SELECTOR": { + "type": "const", + "value": 979263662673215070237784411221295853154410968114948506634943934754177391346 + }, + "src.utils.constants.SIGNER_TYPE_SECP256R1": { + "type": "const", + "value": 2 + }, + "src.utils.constants.SIGNER_TYPE_STARK": { + "type": "const", + "value": 1 + }, + "src.utils.constants.SIGNER_TYPE_UNUSED": { + "type": "const", + "value": 0 + }, + "src.utils.constants.SIGN_PENDING_MULTISIG_TXN_SELECTOR": { + "type": "const", + "value": 739140450142317551736190475027448397206197387125691924280419642098391765544 + }, + "src.utils.constants.SUPPORTS_INTERFACE_SELECTOR": { + "type": "const", + "value": 1184015894760294494673613438913361435336722154500302038630992932234692784845 + }, + "src.utils.constants.TX_VERSION_0": { + "type": "const", + "value": 0 + }, + "src.utils.constants.TX_VERSION_0_EST_FEE": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "src.utils.constants.TX_VERSION_1": { + "type": "const", + "value": 1 + }, + "src.utils.constants.TX_VERSION_1_EST_FEE": { + "type": "const", + "value": 340282366920938463463374607431768211457 + }, + "src.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.bitwise.ALL_ONES": { + "type": "const", + "value": -106710729501573572985208420194530329073740042555888586719234 + }, + "starkware.cairo.common.bitwise.BitwiseBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "type": "alias" + }, + "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.KeccakBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", + "members": { + "input": { + "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "offset": 0 + }, + "output": { + "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "offset": 8 + } + }, + "size": 16, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { + "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "type": "alias" + }, + "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.cairo_secp.bigint.BASE": { + "destination": "starkware.cairo.common.cairo_secp.constants.BASE", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.bigint.BigInt3": { + "full_name": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "members": { + "d0": { + "cairo_type": "felt", + "offset": 0 + }, + "d1": { + "cairo_type": "felt", + "offset": 1 + }, + "d2": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.bigint.RC_BOUND": { + "destination": "starkware.cairo.common.math_cmp.RC_BOUND", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.bigint.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3": { + "full_name": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "members": { + "d0": { + "cairo_type": "felt", + "offset": 0 + }, + "d1": { + "cairo_type": "felt", + "offset": 1 + }, + "d2": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt5": { + "full_name": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt5", + "members": { + "d0": { + "cairo_type": "felt", + "offset": 0 + }, + "d1": { + "cairo_type": "felt", + "offset": 1 + }, + "d2": { + "cairo_type": "felt", + "offset": 2 + }, + "d3": { + "cairo_type": "felt", + "offset": 3 + }, + "d4": { + "cairo_type": "felt", + "offset": 4 + } + }, + "size": 5, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.bigint.assert_nn": { + "destination": "starkware.cairo.common.math.assert_nn", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.bigint.assert_nn_le": { + "destination": "starkware.cairo.common.math.assert_nn_le", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.bigint.bigint_mul": { + "decorators": [], + "pc": 477, + "type": "function" + }, + "starkware.cairo.common.cairo_secp.bigint.bigint_mul.Args": { + "full_name": "starkware.cairo.common.cairo_secp.bigint.bigint_mul.Args", + "members": { + "x": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 0 + }, + "y": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 3 + } + }, + "size": 6, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.bigint.bigint_mul.ImplicitArgs": { + "full_name": "starkware.cairo.common.cairo_secp.bigint.bigint_mul.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.bigint.bigint_mul.Return": { + "cairo_type": "(res: starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt5)", + "type": "type_definition" + }, + "starkware.cairo.common.cairo_secp.bigint.bigint_mul.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint": { + "decorators": [], + "pc": 491, + "type": "function" + }, + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint.Args": { + "full_name": "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint.Args", + "members": { + "x": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint.D1_HIGH_BOUND": { + "type": "const", + "value": 17592186044416 + }, + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint.D1_LOW_BOUND": { + "type": "const", + "value": 4398046511104 + }, + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint.ImplicitArgs": { + "full_name": "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint.Return": { + "cairo_type": "(res: starkware.cairo.common.cairo_secp.bigint.BigInt3)", + "type": "type_definition" + }, + "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.cairo_secp.bigint.unsigned_div_rem": { + "destination": "starkware.cairo.common.math.unsigned_div_rem", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.constants.BASE": { + "type": "const", + "value": 77371252455336267181195264 + }, + "starkware.cairo.common.cairo_secp.constants.BETA": { + "type": "const", + "value": 7 + }, + "starkware.cairo.common.cairo_secp.constants.N0": { + "type": "const", + "value": 10428087374290690730508609 + }, + "starkware.cairo.common.cairo_secp.constants.N1": { + "type": "const", + "value": 77371252455330678278691517 + }, + "starkware.cairo.common.cairo_secp.constants.N2": { + "type": "const", + "value": 19342813113834066795298815 + }, + "starkware.cairo.common.cairo_secp.constants.P0": { + "type": "const", + "value": 77371252455336262886226991 + }, + "starkware.cairo.common.cairo_secp.constants.P1": { + "type": "const", + "value": 77371252455336267181195263 + }, + "starkware.cairo.common.cairo_secp.constants.P2": { + "type": "const", + "value": 19342813113834066795298815 + }, + "starkware.cairo.common.cairo_secp.constants.SECP_REM": { + "type": "const", + "value": 4294968273 + }, + "starkware.cairo.common.cairo_secp.ec.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.EcPoint": { + "full_name": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "members": { + "x": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 0 + }, + "y": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 3 + } + }, + "size": 6, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.ec.UnreducedBigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.is_zero": { + "destination": "starkware.cairo.common.cairo_secp.field.is_zero", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.nondet_bigint3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.nondet_bigint3", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.unreduced_mul": { + "destination": "starkware.cairo.common.cairo_secp.field.unreduced_mul", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.unreduced_sqr": { + "destination": "starkware.cairo.common.cairo_secp.field.unreduced_sqr", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.verify_zero": { + "destination": "starkware.cairo.common.cairo_secp.field.verify_zero", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.BASE": { + "destination": "starkware.cairo.common.cairo_secp.constants.BASE", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.P0": { + "destination": "starkware.cairo.common.cairo_secp.constants.P0", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.P1": { + "destination": "starkware.cairo.common.cairo_secp.constants.P1", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.P2": { + "destination": "starkware.cairo.common.cairo_secp.constants.P2", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.SECP_REM": { + "destination": "starkware.cairo.common.cairo_secp.constants.SECP_REM", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.UnreducedBigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.assert_nn_le": { + "destination": "starkware.cairo.common.math.assert_nn_le", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.nondet_bigint3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.nondet_bigint3", + "type": "alias" + }, + "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.EcOpBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", + "type": "alias" + }, + "starkware.cairo.common.ec.EcPoint": { + "destination": "starkware.cairo.common.ec_point.EcPoint", + "type": "alias" + }, + "starkware.cairo.common.ec.StarkCurve": { + "type": "namespace" + }, + "starkware.cairo.common.ec.StarkCurve.ALPHA": { + "type": "const", + "value": 1 + }, + "starkware.cairo.common.ec.StarkCurve.Args": { + "full_name": "starkware.cairo.common.ec.StarkCurve.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.ec.StarkCurve.BETA": { + "type": "const", + "value": -476910135076337975234679399815567221425937815956490878998147463828055613816 + }, + "starkware.cairo.common.ec.StarkCurve.GEN_X": { + "type": "const", + "value": 874739451078007766457464989774322083649278607533249481151382481072868806602 + }, + "starkware.cairo.common.ec.StarkCurve.GEN_Y": { + "type": "const", + "value": 152666792071518830868575557812948353041420400780739481342941381225525861407 + }, + "starkware.cairo.common.ec.StarkCurve.ImplicitArgs": { + "full_name": "starkware.cairo.common.ec.StarkCurve.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.ec.StarkCurve.ORDER": { + "type": "const", + "value": -96363463615509210819012598251359154898 + }, + "starkware.cairo.common.ec.StarkCurve.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.ec.StarkCurve.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.ec.is_quad_residue": { + "destination": "starkware.cairo.common.math.is_quad_residue", + "type": "alias" + }, + "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.hash_state.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "starkware.cairo.common.hash_state.HashState": { + "full_name": "starkware.cairo.common.hash_state.HashState", + "members": { + "current_hash": { + "cairo_type": "felt", + "offset": 0 + }, + "n_words": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.hash_state.get_fp_and_pc": { + "destination": "starkware.cairo.common.registers.get_fp_and_pc", + "type": "alias" + }, + "starkware.cairo.common.hash_state.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "starkware.cairo.common.hash_state.hash_felts": { + "decorators": [], + "pc": 5884, + "type": "function" + }, + "starkware.cairo.common.hash_state.hash_felts.Args": { + "full_name": "starkware.cairo.common.hash_state.hash_felts.Args", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 0 + }, + "length": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_felts.ImplicitArgs": { + "full_name": "starkware.cairo.common.hash_state.hash_felts.ImplicitArgs", + "members": { + "hash_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_felts.Return": { + "cairo_type": "(hash: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.hash_state.hash_felts.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.hash_state.hash_finalize": { + "decorators": [], + "pc": 5853, + "type": "function" + }, + "starkware.cairo.common.hash_state.hash_finalize.Args": { + "full_name": "starkware.cairo.common.hash_state.hash_finalize.Args", + "members": { + "hash_state_ptr": { + "cairo_type": "starkware.cairo.common.hash_state.HashState*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_finalize.ImplicitArgs": { + "full_name": "starkware.cairo.common.hash_state.hash_finalize.ImplicitArgs", + "members": { + "hash_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_finalize.Return": { + "cairo_type": "(hash: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.hash_state.hash_finalize.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.hash_state.hash_init": { + "decorators": [], + "pc": 5800, + "type": "function" + }, + "starkware.cairo.common.hash_state.hash_init.Args": { + "full_name": "starkware.cairo.common.hash_state.hash_init.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_init.ImplicitArgs": { + "full_name": "starkware.cairo.common.hash_state.hash_init.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_init.Return": { + "cairo_type": "(hash_state_ptr: starkware.cairo.common.hash_state.HashState*)", + "type": "type_definition" + }, + "starkware.cairo.common.hash_state.hash_init.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "starkware.cairo.common.hash_state.hash_update": { + "decorators": [], + "pc": 5810, + "type": "function" + }, + "starkware.cairo.common.hash_state.hash_update.Args": { + "full_name": "starkware.cairo.common.hash_state.hash_update.Args", + "members": { + "data_length": { + "cairo_type": "felt", + "offset": 2 + }, + "data_ptr": { + "cairo_type": "felt*", + "offset": 1 + }, + "hash_state_ptr": { + "cairo_type": "starkware.cairo.common.hash_state.HashState*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_update.ImplicitArgs": { + "full_name": "starkware.cairo.common.hash_state.hash_update.ImplicitArgs", + "members": { + "hash_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_update.Return": { + "cairo_type": "(new_hash_state_ptr: starkware.cairo.common.hash_state.HashState*)", + "type": "type_definition" + }, + "starkware.cairo.common.hash_state.hash_update.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "starkware.cairo.common.hash_state.hash_update_inner": { + "decorators": [], + "pc": 5859, + "type": "function" + }, + "starkware.cairo.common.hash_state.hash_update_inner.Args": { + "full_name": "starkware.cairo.common.hash_state.hash_update_inner.Args", + "members": { + "data_length": { + "cairo_type": "felt", + "offset": 1 + }, + "data_ptr": { + "cairo_type": "felt*", + "offset": 0 + }, + "hash": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_update_inner.ImplicitArgs": { + "full_name": "starkware.cairo.common.hash_state.hash_update_inner.ImplicitArgs", + "members": { + "hash_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_update_inner.LoopLocals": { + "full_name": "starkware.cairo.common.hash_state.hash_update_inner.LoopLocals", + "members": { + "cur_hash": { + "cairo_type": "felt", + "offset": 2 + }, + "data_ptr": { + "cairo_type": "felt*", + "offset": 0 + }, + "hash_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_update_inner.Return": { + "cairo_type": "(hash: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.hash_state.hash_update_inner.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "starkware.cairo.common.hash_state.hash_update_inner.hash_loop": { + "pc": 5872, + "type": "label" + }, + "starkware.cairo.common.hash_state.hash_update_single": { + "decorators": [], + "pc": 5826, + "type": "function" + }, + "starkware.cairo.common.hash_state.hash_update_single.Args": { + "full_name": "starkware.cairo.common.hash_state.hash_update_single.Args", + "members": { + "hash_state_ptr": { + "cairo_type": "starkware.cairo.common.hash_state.HashState*", + "offset": 0 + }, + "item": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_update_single.ImplicitArgs": { + "full_name": "starkware.cairo.common.hash_state.hash_update_single.ImplicitArgs", + "members": { + "hash_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_update_single.Return": { + "cairo_type": "(new_hash_state_ptr: starkware.cairo.common.hash_state.HashState*)", + "type": "type_definition" + }, + "starkware.cairo.common.hash_state.hash_update_single.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "starkware.cairo.common.hash_state.hash_update_with_hashchain": { + "decorators": [], + "pc": 5842, + "type": "function" + }, + "starkware.cairo.common.hash_state.hash_update_with_hashchain.Args": { + "full_name": "starkware.cairo.common.hash_state.hash_update_with_hashchain.Args", + "members": { + "data_length": { + "cairo_type": "felt", + "offset": 2 + }, + "data_ptr": { + "cairo_type": "felt*", + "offset": 1 + }, + "hash_state_ptr": { + "cairo_type": "starkware.cairo.common.hash_state.HashState*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_update_with_hashchain.ImplicitArgs": { + "full_name": "starkware.cairo.common.hash_state.hash_update_with_hashchain.ImplicitArgs", + "members": { + "hash_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.hash_state.hash_update_with_hashchain.Return": { + "cairo_type": "(new_hash_state_ptr: starkware.cairo.common.hash_state.HashState*)", + "type": "type_definition" + }, + "starkware.cairo.common.hash_state.hash_update_with_hashchain.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.keccak_state.KeccakBuiltinState": { + "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "members": { + "s0": { + "cairo_type": "felt", + "offset": 0 + }, + "s1": { + "cairo_type": "felt", + "offset": 1 + }, + "s2": { + "cairo_type": "felt", + "offset": 2 + }, + "s3": { + "cairo_type": "felt", + "offset": 3 + }, + "s4": { + "cairo_type": "felt", + "offset": 4 + }, + "s5": { + "cairo_type": "felt", + "offset": 5 + }, + "s6": { + "cairo_type": "felt", + "offset": 6 + }, + "s7": { + "cairo_type": "felt", + "offset": 7 + } + }, + "size": 8, + "type": "struct" + }, + "starkware.cairo.common.math.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "starkware.cairo.common.math.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "starkware.cairo.common.math.assert_250_bit": { + "decorators": ["known_ap_change"], + "pc": 59, + "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": 10, + "offset": 0 + }, + "pc": 59, + "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": 10, + "offset": 0 + }, + "pc": 59, + "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": 10, + "offset": 0 + }, + "pc": 59, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le": { + "decorators": [], + "pc": 45, + "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": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_le.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_le_felt": { + "decorators": ["known_ap_change"], + "pc": 101, + "type": "function" + }, + "starkware.cairo.common.math.assert_le_felt.Args": { + "full_name": "starkware.cairo.common.math.assert_le_felt.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + }, + "b": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.math.assert_le_felt.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_le_felt.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_2_HIGH": { + "type": "const", + "value": 5316911983139663648412552867652567041 + }, + "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_3_HIGH": { + "type": "const", + "value": 3544607988759775765608368578435044694 + }, + "starkware.cairo.common.math.assert_le_felt.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_le_felt.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_le_felt.a": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_le_felt.a", + "references": [ + { + "ap_tracking_data": { + "group": 12, + "offset": 0 + }, + "pc": 101, + "value": "[cast(fp + (-4), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le_felt.b": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_le_felt.b", + "references": [ + { + "ap_tracking_data": { + "group": 12, + "offset": 0 + }, + "pc": 101, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le_felt.range_check_ptr": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_le_felt.range_check_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 12, + "offset": 0 + }, + "pc": 101, + "value": "[cast(fp + (-5), felt*)]" + }, + { + "ap_tracking_data": { + "group": 12, + "offset": 8 + }, + "pc": 111, + "value": "cast([fp + (-5)] + 4, felt)" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le_felt.skip_exclude_a": { + "pc": 125, + "type": "label" + }, + "starkware.cairo.common.math.assert_le_felt.skip_exclude_b_minus_a": { + "pc": 137, + "type": "label" + }, + "starkware.cairo.common.math.assert_lt_felt": { + "decorators": ["known_ap_change"], + "pc": 146, + "type": "function" + }, + "starkware.cairo.common.math.assert_lt_felt.Args": { + "full_name": "starkware.cairo.common.math.assert_lt_felt.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + }, + "b": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.math.assert_lt_felt.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_lt_felt.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_lt_felt.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_lt_felt.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_lt_felt.a": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_lt_felt.a", + "references": [ + { + "ap_tracking_data": { + "group": 13, + "offset": 0 + }, + "pc": 146, + "value": "[cast(fp + (-4), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_lt_felt.b": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_lt_felt.b", + "references": [ + { + "ap_tracking_data": { + "group": 13, + "offset": 0 + }, + "pc": 146, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_nn": { + "decorators": [], + "pc": 41, + "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": { + "cairo_type": "()", + "type": "type_definition" + }, + "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": 7, + "offset": 0 + }, + "pc": 41, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_nn_le": { + "decorators": [], + "pc": 50, + "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": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_nn_le.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_not_equal": { + "decorators": [], + "pc": 35, + "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": 6, + "offset": 0 + }, + "pc": 35, + "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": 6, + "offset": 0 + }, + "pc": 35, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_not_zero": { + "decorators": [], + "pc": 30, + "type": "function" + }, + "starkware.cairo.common.math.assert_not_zero.Args": { + "full_name": "starkware.cairo.common.math.assert_not_zero.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_not_zero.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_not_zero.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.math.assert_not_zero.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_not_zero.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_not_zero.value": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_not_zero.value", + "references": [ + { + "ap_tracking_data": { + "group": 5, + "offset": 0 + }, + "pc": 30, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.split_felt": { + "decorators": ["known_ap_change"], + "pc": 72, + "type": "function" + }, + "starkware.cairo.common.math.split_felt.Args": { + "full_name": "starkware.cairo.common.math.split_felt.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.split_felt.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.split_felt.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.split_felt.MAX_HIGH": { + "type": "const", + "value": 10633823966279327296825105735305134080 + }, + "starkware.cairo.common.math.split_felt.MAX_LOW": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.split_felt.Return": { + "cairo_type": "(high: felt, low: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.math.split_felt.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.split_felt.high": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.split_felt.high", + "references": [ + { + "ap_tracking_data": { + "group": 11, + "offset": 0 + }, + "pc": 72, + "value": "[cast([fp + (-4)] + 1, felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.split_felt.low": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.split_felt.low", + "references": [ + { + "ap_tracking_data": { + "group": 11, + "offset": 0 + }, + "pc": 72, + "value": "[cast([fp + (-4)], felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.split_felt.value": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.split_felt.value", + "references": [ + { + "ap_tracking_data": { + "group": 11, + "offset": 0 + }, + "pc": 72, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.unsigned_div_rem": { + "decorators": [], + "pc": 157, + "type": "function" + }, + "starkware.cairo.common.math.unsigned_div_rem.Args": { + "full_name": "starkware.cairo.common.math.unsigned_div_rem.Args", + "members": { + "div": { + "cairo_type": "felt", + "offset": 1 + }, + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.math.unsigned_div_rem.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.unsigned_div_rem.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.unsigned_div_rem.Return": { + "cairo_type": "(q: felt, r: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.math.unsigned_div_rem.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.unsigned_div_rem.div": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.unsigned_div_rem.div", + "references": [ + { + "ap_tracking_data": { + "group": 14, + "offset": 0 + }, + "pc": 157, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.unsigned_div_rem.q": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.unsigned_div_rem.q", + "references": [ + { + "ap_tracking_data": { + "group": 14, + "offset": 0 + }, + "pc": 157, + "value": "[cast([fp + (-5)] + 1, felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.unsigned_div_rem.r": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.unsigned_div_rem.r", + "references": [ + { + "ap_tracking_data": { + "group": 14, + "offset": 0 + }, + "pc": 157, + "value": "[cast([fp + (-5)], felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.unsigned_div_rem.value": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.unsigned_div_rem.value", + "references": [ + { + "ap_tracking_data": { + "group": 14, + "offset": 0 + }, + "pc": 157, + "value": "[cast(fp + (-4), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math_cmp.RC_BOUND": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "starkware.cairo.common.math_cmp.assert_le_felt": { + "destination": "starkware.cairo.common.math.assert_le_felt", + "type": "alias" + }, + "starkware.cairo.common.math_cmp.assert_lt_felt": { + "destination": "starkware.cairo.common.math.assert_lt_felt", + "type": "alias" + }, + "starkware.cairo.common.math_cmp.is_le_felt": { + "decorators": ["known_ap_change"], + "pc": 305, + "type": "function" + }, + "starkware.cairo.common.math_cmp.is_le_felt.Args": { + "full_name": "starkware.cairo.common.math_cmp.is_le_felt.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + }, + "b": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_le_felt.ImplicitArgs": { + "full_name": "starkware.cairo.common.math_cmp.is_le_felt.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_le_felt.Return": { + "cairo_type": "felt", + "type": "type_definition" + }, + "starkware.cairo.common.math_cmp.is_le_felt.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math_cmp.is_le_felt.a": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math_cmp.is_le_felt.a", + "references": [ + { + "ap_tracking_data": { + "group": 27, + "offset": 0 + }, + "pc": 305, + "value": "[cast(fp + (-4), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math_cmp.is_le_felt.b": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math_cmp.is_le_felt.b", + "references": [ + { + "ap_tracking_data": { + "group": 27, + "offset": 0 + }, + "pc": 305, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math_cmp.is_le_felt.not_le": { + "pc": 317, + "type": "label" + }, + "starkware.cairo.common.math_cmp.is_not_zero": { + "decorators": ["known_ap_change"], + "pc": 297, + "type": "function" + }, + "starkware.cairo.common.math_cmp.is_not_zero.Args": { + "full_name": "starkware.cairo.common.math_cmp.is_not_zero.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_not_zero.ImplicitArgs": { + "full_name": "starkware.cairo.common.math_cmp.is_not_zero.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_not_zero.Return": { + "cairo_type": "felt", + "type": "type_definition" + }, + "starkware.cairo.common.math_cmp.is_not_zero.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "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.pow.assert_le": { + "destination": "starkware.cairo.common.math.assert_le", + "type": "alias" + }, + "starkware.cairo.common.pow.get_ap": { + "destination": "starkware.cairo.common.registers.get_ap", + "type": "alias" + }, + "starkware.cairo.common.pow.get_fp_and_pc": { + "destination": "starkware.cairo.common.registers.get_fp_and_pc", + "type": "alias" + }, + "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.EcOpBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", + "type": "alias" + }, + "starkware.cairo.common.signature.EcPoint": { + "destination": "starkware.cairo.common.ec_point.EcPoint", + "type": "alias" + }, + "starkware.cairo.common.signature.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "starkware.cairo.common.signature.SignatureBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", + "type": "alias" + }, + "starkware.cairo.common.signature.StarkCurve": { + "destination": "starkware.cairo.common.ec.StarkCurve", + "type": "alias" + }, + "starkware.cairo.common.signature.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "starkware.cairo.common.signature.ec_add": { + "destination": "starkware.cairo.common.ec.ec_add", + "type": "alias" + }, + "starkware.cairo.common.signature.ec_mul": { + "destination": "starkware.cairo.common.ec.ec_mul", + "type": "alias" + }, + "starkware.cairo.common.signature.ec_sub": { + "destination": "starkware.cairo.common.ec.ec_sub", + "type": "alias" + }, + "starkware.cairo.common.signature.is_x_on_curve": { + "destination": "starkware.cairo.common.ec.is_x_on_curve", + "type": "alias" + }, + "starkware.cairo.common.signature.recover_y": { + "destination": "starkware.cairo.common.ec.recover_y", + "type": "alias" + }, + "starkware.cairo.common.signature.verify_ecdsa_signature": { + "decorators": [], + "pc": 510, + "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": 43, + "offset": 0 + }, + "pc": 510, + "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.SignatureBuiltin**)]" + }, + { + "ap_tracking_data": { + "group": 43, + "offset": 0 + }, + "pc": 512, + "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": 43, + "offset": 0 + }, + "pc": 510, + "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": 43, + "offset": 0 + }, + "pc": 510, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.uint256.ALL_ONES": { + "type": "const", + "value": 340282366920938463463374607431768211455 + }, + "starkware.cairo.common.uint256.BitwiseBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "type": "alias" + }, + "starkware.cairo.common.uint256.HALF_SHIFT": { + "type": "const", + "value": 18446744073709551616 + }, + "starkware.cairo.common.uint256.SHIFT": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "starkware.cairo.common.uint256.Uint256": { + "full_name": "starkware.cairo.common.uint256.Uint256", + "members": { + "high": { + "cairo_type": "felt", + "offset": 1 + }, + "low": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.uint256.assert_in_range": { + "destination": "starkware.cairo.common.math.assert_in_range", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_le": { + "destination": "starkware.cairo.common.math.assert_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_nn_le": { + "destination": "starkware.cairo.common.math.assert_nn_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_and": { + "destination": "starkware.cairo.common.bitwise.bitwise_and", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_or": { + "destination": "starkware.cairo.common.bitwise.bitwise_or", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_xor": { + "destination": "starkware.cairo.common.bitwise.bitwise_xor", + "type": "alias" + }, + "starkware.cairo.common.uint256.get_ap": { + "destination": "starkware.cairo.common.registers.get_ap", + "type": "alias" + }, + "starkware.cairo.common.uint256.get_fp_and_pc": { + "destination": "starkware.cairo.common.registers.get_fp_and_pc", + "type": "alias" + }, + "starkware.cairo.common.uint256.is_le": { + "destination": "starkware.cairo.common.math_cmp.is_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.pow": { + "destination": "starkware.cairo.common.pow.pow", + "type": "alias" + }, + "starkware.cairo.common.uint256.uint256_check": { + "decorators": [], + "pc": 472, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_check.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_check.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_check.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_check.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_check.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_check.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.lang.compiler.lib.registers.get_ap": { + "decorators": ["known_ap_change"], + "pc": 25, + "type": "function" + }, + "starkware.cairo.lang.compiler.lib.registers.get_ap.Args": { + "full_name": "starkware.cairo.lang.compiler.lib.registers.get_ap.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.lang.compiler.lib.registers.get_ap.ImplicitArgs": { + "full_name": "starkware.cairo.lang.compiler.lib.registers.get_ap.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.lang.compiler.lib.registers.get_ap.Return": { + "cairo_type": "(ap_val: felt*)", + "type": "type_definition" + }, + "starkware.cairo.lang.compiler.lib.registers.get_ap.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "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.constants.DECLARE_HASH_PREFIX": { + "type": "const", + "value": 28258975365558885 + }, + "starkware.starknet.common.constants.DEPLOY_ACCOUNT_HASH_PREFIX": { + "type": "const", + "value": 2036277798190617858034555652763252 + }, + "starkware.starknet.common.constants.DEPLOY_HASH_PREFIX": { + "type": "const", + "value": 110386840629113 + }, + "starkware.starknet.common.constants.INVOKE_HASH_PREFIX": { + "type": "const", + "value": 115923154332517 + }, + "starkware.starknet.common.constants.L1_HANDLER_HASH_PREFIX": { + "type": "const", + "value": 510926345461491391292786 + }, + "starkware.starknet.common.constants.ORIGIN_ADDRESS": { + "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": 172, + "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": 15, + "offset": 0 + }, + "pc": 172, + "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": 15, + "offset": 2 + }, + "pc": 192, + "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": 15, + "offset": 1 + }, + "pc": 174, + "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 + }, + "deploy_from_zero": { + "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 + }, + "nonce": { + "cairo_type": "felt", + "offset": 7 + }, + "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": 8, + "type": "struct" + }, + "starkware.starknet.common.syscalls.call_contract": { + "decorators": [], + "pc": 212, + "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": 16, + "offset": 0 + }, + "pc": 212, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 16, + "offset": 1 + }, + "pc": 219, + "value": "cast([fp + (-7)] + 7, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.emit_event": { + "decorators": [], + "pc": 280, + "type": "function" + }, + "starkware.starknet.common.syscalls.emit_event.Args": { + "full_name": "starkware.starknet.common.syscalls.emit_event.Args", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 3 + }, + "data_len": { + "cairo_type": "felt", + "offset": 2 + }, + "keys": { + "cairo_type": "felt*", + "offset": 1 + }, + "keys_len": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.emit_event.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.emit_event.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.emit_event.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.emit_event.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 24, + "offset": 0 + }, + "pc": 280, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 24, + "offset": 1 + }, + "pc": 287, + "value": "cast([fp + (-7)] + 5, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.get_block_number": { + "decorators": [], + "pc": 243, + "type": "function" + }, + "starkware.starknet.common.syscalls.get_block_number.Args": { + "full_name": "starkware.starknet.common.syscalls.get_block_number.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.starknet.common.syscalls.get_block_number.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.get_block_number.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.get_block_number.Return": { + "cairo_type": "(block_number: felt)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.get_block_number.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.get_block_number.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.get_block_number.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 19, + "offset": 0 + }, + "pc": 243, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 19, + "offset": 1 + }, + "pc": 246, + "value": "cast([fp + (-3)] + 2, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.get_block_timestamp": { + "decorators": [], + "pc": 257, + "type": "function" + }, + "starkware.starknet.common.syscalls.get_block_timestamp.Args": { + "full_name": "starkware.starknet.common.syscalls.get_block_timestamp.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.starknet.common.syscalls.get_block_timestamp.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.get_block_timestamp.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.get_block_timestamp.Return": { + "cairo_type": "(block_timestamp: felt)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.get_block_timestamp.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.get_block_timestamp.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.get_block_timestamp.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 21, + "offset": 0 + }, + "pc": 257, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 21, + "offset": 1 + }, + "pc": 260, + "value": "cast([fp + (-3)] + 2, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.get_caller_address": { + "decorators": [], + "pc": 236, + "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": 18, + "offset": 0 + }, + "pc": 236, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 18, + "offset": 1 + }, + "pc": 239, + "value": "cast([fp + (-3)] + 2, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.get_contract_address": { + "decorators": [], + "pc": 250, + "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": 20, + "offset": 0 + }, + "pc": 250, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 20, + "offset": 1 + }, + "pc": 253, + "value": "cast([fp + (-3)] + 2, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.get_tx_info": { + "decorators": [], + "pc": 290, + "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": 25, + "offset": 0 + }, + "pc": 290, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 25, + "offset": 1 + }, + "pc": 293, + "value": "cast([fp + (-3)] + 2, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.library_call": { + "decorators": [], + "pc": 224, + "type": "function" + }, + "starkware.starknet.common.syscalls.library_call.Args": { + "full_name": "starkware.starknet.common.syscalls.library_call.Args", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 3 + }, + "calldata_size": { + "cairo_type": "felt", + "offset": 2 + }, + "class_hash": { + "cairo_type": "felt", + "offset": 0 + }, + "function_selector": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.library_call.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.library_call.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.library_call.Return": { + "cairo_type": "(retdata_size: felt, retdata: felt*)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.library_call.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.library_call.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.library_call.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 17, + "offset": 0 + }, + "pc": 224, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 17, + "offset": 1 + }, + "pc": 231, + "value": "cast([fp + (-7)] + 7, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.storage_read": { + "decorators": [], + "pc": 264, + "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": 22, + "offset": 0 + }, + "pc": 264, + "value": "[cast(fp + (-4), felt**)]" + }, + { + "ap_tracking_data": { + "group": 22, + "offset": 1 + }, + "pc": 268, + "value": "cast([fp + (-4)] + 3, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.storage_write": { + "decorators": [], + "pc": 272, + "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": 23, + "offset": 0 + }, + "pc": 272, + "value": "[cast(fp + (-5), felt**)]" + }, + { + "ap_tracking_data": { + "group": 23, + "offset": 1 + }, + "pc": 277, + "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": 5, + "offset": 0 + }, + "pc": 30, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 6, + "offset": 0 + }, + "pc": 35, + "value": "[cast(fp + (-4), felt*)]" + }, + { + "ap_tracking_data": { + "group": 6, + "offset": 0 + }, + "pc": 35, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 7, + "offset": 0 + }, + "pc": 41, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 10, + "offset": 0 + }, + "pc": 59, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 10, + "offset": 0 + }, + "pc": 59, + "value": "[cast([fp + (-4)], felt*)]" + }, + { + "ap_tracking_data": { + "group": 10, + "offset": 0 + }, + "pc": 59, + "value": "[cast([fp + (-4)] + 1, felt*)]" + }, + { + "ap_tracking_data": { + "group": 11, + "offset": 0 + }, + "pc": 72, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 11, + "offset": 0 + }, + "pc": 72, + "value": "[cast([fp + (-4)], felt*)]" + }, + { + "ap_tracking_data": { + "group": 11, + "offset": 0 + }, + "pc": 72, + "value": "[cast([fp + (-4)] + 1, felt*)]" + }, + { + "ap_tracking_data": { + "group": 12, + "offset": 0 + }, + "pc": 101, + "value": "[cast(fp + (-4), felt*)]" + }, + { + "ap_tracking_data": { + "group": 12, + "offset": 0 + }, + "pc": 101, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 12, + "offset": 0 + }, + "pc": 101, + "value": "[cast(fp + (-5), felt*)]" + }, + { + "ap_tracking_data": { + "group": 13, + "offset": 0 + }, + "pc": 146, + "value": "[cast(fp + (-4), felt*)]" + }, + { + "ap_tracking_data": { + "group": 13, + "offset": 0 + }, + "pc": 146, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 14, + "offset": 0 + }, + "pc": 157, + "value": "[cast(fp + (-4), felt*)]" + }, + { + "ap_tracking_data": { + "group": 14, + "offset": 0 + }, + "pc": 157, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 14, + "offset": 0 + }, + "pc": 157, + "value": "[cast([fp + (-5)], felt*)]" + }, + { + "ap_tracking_data": { + "group": 14, + "offset": 0 + }, + "pc": 157, + "value": "[cast([fp + (-5)] + 1, felt*)]" + }, + { + "ap_tracking_data": { + "group": 15, + "offset": 0 + }, + "pc": 172, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 15, + "offset": 1 + }, + "pc": 174, + "value": "[cast(ap + (-1), felt*)]" + }, + { + "ap_tracking_data": { + "group": 15, + "offset": 2 + }, + "pc": 192, + "value": "[cast(ap + (-1), felt*)]" + }, + { + "ap_tracking_data": { + "group": 16, + "offset": 0 + }, + "pc": 212, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 17, + "offset": 0 + }, + "pc": 224, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 18, + "offset": 0 + }, + "pc": 236, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 19, + "offset": 0 + }, + "pc": 243, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 20, + "offset": 0 + }, + "pc": 250, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 21, + "offset": 0 + }, + "pc": 257, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 22, + "offset": 0 + }, + "pc": 264, + "value": "[cast(fp + (-4), felt**)]" + }, + { + "ap_tracking_data": { + "group": 23, + "offset": 0 + }, + "pc": 272, + "value": "[cast(fp + (-5), felt**)]" + }, + { + "ap_tracking_data": { + "group": 24, + "offset": 0 + }, + "pc": 280, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 25, + "offset": 0 + }, + "pc": 290, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 27, + "offset": 0 + }, + "pc": 305, + "value": "[cast(fp + (-4), felt*)]" + }, + { + "ap_tracking_data": { + "group": 27, + "offset": 0 + }, + "pc": 305, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 43, + "offset": 0 + }, + "pc": 510, + "value": "[cast(fp + (-4), felt*)]" + }, + { + "ap_tracking_data": { + "group": 43, + "offset": 0 + }, + "pc": 510, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 43, + "offset": 0 + }, + "pc": 510, + "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.SignatureBuiltin**)]" + }, + { + "ap_tracking_data": { + "group": 44, + "offset": 0 + }, + "pc": 515, + "value": "[cast(ap + 4, starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + }, + { + "ap_tracking_data": { + "group": 45, + "offset": 0 + }, + "pc": 528, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 45, + "offset": 0 + }, + "pc": 528, + "value": "[cast([fp + (-4)], felt*)]" + }, + { + "ap_tracking_data": { + "group": 45, + "offset": 0 + }, + "pc": 528, + "value": "[cast([fp + (-4)] + 1, felt*)]" + }, + { + "ap_tracking_data": { + "group": 48, + "offset": 0 + }, + "pc": 615, + "value": "[cast(fp + (-5), starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3*)]" + }, + { + "ap_tracking_data": { + "group": 48, + "offset": 1 + }, + "pc": 617, + "value": "[cast(fp, felt*)]" + }, + { + "ap_tracking_data": { + "group": 49, + "offset": 0 + }, + "pc": 649, + "value": "[cast(fp + (-5), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + }, + { + "ap_tracking_data": { + "group": 50, + "offset": 0 + }, + "pc": 685, + "value": "[cast(fp + (-5), starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3*)]" + }, + { + "ap_tracking_data": { + "group": 50, + "offset": 10 + }, + "pc": 688, + "value": "[cast(ap + (-3), starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3*)]" + }, + { + "ap_tracking_data": { + "group": 51, + "offset": 0 + }, + "pc": 701, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + }, + { + "ap_tracking_data": { + "group": 52, + "offset": 0 + }, + "pc": 751, + "value": "[cast(fp + (-14), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + }, + { + "ap_tracking_data": { + "group": 52, + "offset": 0 + }, + "pc": 751, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + }, + { + "ap_tracking_data": { + "group": 53, + "offset": 0 + }, + "pc": 775, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + }, + { + "ap_tracking_data": { + "group": 53, + "offset": 158 + }, + "pc": 798, + "value": "[cast(ap + (-3), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + }, + { + "ap_tracking_data": { + "group": 54, + "offset": 0 + }, + "pc": 848, + "value": "[cast(fp + (-14), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + }, + { + "ap_tracking_data": { + "group": 54, + "offset": 0 + }, + "pc": 848, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.ec.EcPoint*)]" + }, + { + "ap_tracking_data": { + "group": 54, + "offset": 117 + }, + "pc": 891, + "value": "[cast(ap + (-3), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + }, + { + "ap_tracking_data": { + "group": 61, + "offset": 0 + }, + "pc": 1042, + "value": "[cast(fp + (-5), felt*)]" + }, + { + "ap_tracking_data": { + "group": 61, + "offset": 0 + }, + "pc": 1042, + "value": "[cast(fp + (-4), felt*)]" + }, + { + "ap_tracking_data": { + "group": 61, + "offset": 0 + }, + "pc": 1042, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 62, + "offset": 0 + }, + "pc": 1065, + "value": "[cast(fp, felt*)]" + }, + { + "ap_tracking_data": { + "group": 70, + "offset": 0 + }, + "pc": 1232, + "value": "[cast(fp + (-5), felt*)]" + }, + { + "ap_tracking_data": { + "group": 70, + "offset": 0 + }, + "pc": 1232, + "value": "[cast(fp + (-4), felt*)]" + }, + { + "ap_tracking_data": { + "group": 70, + "offset": 0 + }, + "pc": 1232, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 70, + "offset": 1 + }, + "pc": 1234, + "value": "[cast(fp, felt*)]" + }, + { + "ap_tracking_data": { + "group": 105, + "offset": 0 + }, + "pc": 3137, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + }, + { + "ap_tracking_data": { + "group": 105, + "offset": 0 + }, + "pc": 3137, + "value": "[cast(fp + (-5), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + }, + { + "ap_tracking_data": { + "group": 105, + "offset": 171 + }, + "pc": 3139, + "value": "[cast(fp, felt*)]" + }, + { + "ap_tracking_data": { + "group": 123, + "offset": 0 + }, + "pc": 3810, + "value": "[cast(fp + (-8), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + }, + { + "ap_tracking_data": { + "group": 123, + "offset": 0 + }, + "pc": 3810, + "value": "[cast(fp + (-5), starkware.cairo.common.cairo_secp.bigint.BigInt3*)]" + } + ] + } + } +} diff --git a/configs/genesis-assets/BraavosAccountBaseImpl.json b/configs/genesis-assets/BraavosAccountBaseImpl.json new file mode 100644 index 0000000000..f1785b9433 --- /dev/null +++ b/configs/genesis-assets/BraavosAccountBaseImpl.json @@ -0,0 +1,8434 @@ +{ + "abi": [ + { + "members": [ + { + "name": "expire_at", + "offset": 0, + "type": "felt" + }, + { + "name": "signer_id", + "offset": 1, + "type": "felt" + } + ], + "name": "DeferredRemoveSignerRequest", + "size": 2, + "type": "struct" + }, + { + "members": [ + { + "name": "signer_0", + "offset": 0, + "type": "felt" + }, + { + "name": "signer_1", + "offset": 1, + "type": "felt" + }, + { + "name": "signer_2", + "offset": 2, + "type": "felt" + }, + { + "name": "signer_3", + "offset": 3, + "type": "felt" + }, + { + "name": "type", + "offset": 4, + "type": "felt" + }, + { + "name": "reserved_0", + "offset": 5, + "type": "felt" + }, + { + "name": "reserved_1", + "offset": 6, + "type": "felt" + } + ], + "name": "SignerModel", + "size": 7, + "type": "struct" + }, + { + "data": [ + { + "name": "implementation", + "type": "felt" + } + ], + "keys": [], + "name": "Upgraded", + "type": "event" + }, + { + "data": [ + { + "name": "request", + "type": "DeferredRemoveSignerRequest" + } + ], + "keys": [], + "name": "SignerRemoveRequest", + "type": "event" + }, + { + "data": [ + { + "name": "signer_id", + "type": "felt" + }, + { + "name": "signer", + "type": "SignerModel" + } + ], + "keys": [], + "name": "SignerAdded", + "type": "event" + }, + { + "data": [ + { + "name": "signer_id", + "type": "felt" + } + ], + "keys": [], + "name": "SignerRemoved", + "type": "event" + }, + { + "data": [ + { + "name": "request", + "type": "DeferredRemoveSignerRequest" + } + ], + "keys": [], + "name": "SignerRemoveRequestCancelled", + "type": "event" + }, + { + "data": [ + { + "name": "public_key", + "type": "felt" + } + ], + "keys": [], + "name": "AccountInitialized", + "type": "event" + }, + { + "inputs": [ + { + "name": "public_key", + "type": "felt" + } + ], + "name": "initializer", + "outputs": [], + "type": "function" + } + ], + "entry_points_by_type": { + "CONSTRUCTOR": [], + "EXTERNAL": [ + { + "offset": "0x9c", + "selector": "0x2dd76e7ad84dbed81c314ffe5e7a7cacfb8f4836f01af4e913f275f89a3de1a" + } + ], + "L1_HANDLER": [] + }, + "program": { + "attributes": [ + { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "end_pc": 116, + "flow_tracking_data": { + "ap_tracking": { + "group": 13, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 114, + "value": "Account: missing parameters in initializer signature" + }, + { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "end_pc": 135, + "flow_tracking_data": { + "ap_tracking": { + "group": 14, + "offset": 18 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 132, + "value": "Account Base: invalid actual implementation" + } + ], + "builtins": ["pedersen", "range_check"], + "compiler_version": "0.10.3", + "data": [ + "0x40780017fff7fff", + "0x1", + "0x208b7fff7fff7ffe", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x482480017ffe8000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffff", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffd", + "0x4", + "0x400780017fff7ffd", + "0x1", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x4c69627261727943616c6c", + "0x400280007ff97fff", + "0x400380017ff97ffa", + "0x400380027ff97ffb", + "0x400380037ff97ffc", + "0x400380047ff97ffd", + "0x482680017ff98000", + "0x7", + "0x480280057ff98000", + "0x480280067ff98000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x476574436f6e747261637441646472657373", + "0x400280007ffd7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x53746f726167655772697465", + "0x400280007ffb7fff", + "0x400380017ffb7ffc", + "0x400380027ffb7ffd", + "0x482680017ffb8000", + "0x3", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x456d69744576656e74", + "0x400280007ff97fff", + "0x400380017ff97ffa", + "0x400380027ff97ffb", + "0x400380037ff97ffc", + "0x400380047ff97ffd", + "0x482680017ff98000", + "0x5", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x4765745478496e666f", + "0x400280007ffd7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc5", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbf", + "0x40137fff7fff8001", + "0x4003800080017ffd", + "0x4826800180018000", + "0x1", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdc", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x3ad34fad732b51fe0d1a1350f149f21a0cf14a9382c9c6e7b262c4e0c8dbf18", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc4", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcf", + "0x48127ffe7fff8000", + "0x48127fe47fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x400780017fff7ffc", + "0xa", + "0x480280027ffd8000", + "0x480280037ffd8000", + "0x480280047ffd8000", + "0x480280057ffd8000", + "0x480280067ffd8000", + "0x480280077ffd8000", + "0x480280087ffd8000", + "0x480280097ffd8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb6", + "0x480080037fff8000", + "0x480080047ffe8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff87fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff85", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7d", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48127fe87fff8000", + "0x48127fed7fff8000", + "0x480680017fff8000", + "0x2dd76e7ad84dbed81c314ffe5e7a7cacfb8f4836f01af4e913f275f89a3de1a", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7c", + "0x48127ffd7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x48127fe07fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcb", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdb", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe" + ], + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo": "assert [__calldata_ptr] = implementation;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", + "autogen/starknet/arg_processor/fcae171a11efdbb3d6f68abb567d4209a3b5b40b77b7badc1698f31527b74fb9.cairo": "let __calldata_arg_public_key = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/external/initializer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/initializer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/initializer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/initializer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.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/storage_var/Proxy_implementation_address/decl.cairo": "namespace Proxy_implementation_address {\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 }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n implementation_address: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\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 }\n}", + "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo": "namespace Proxy_implementation_address {\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 = 1662968741416162122709795668327058413808168082301235317239158738933362048792;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n implementation_address: felt\n ) {\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 }\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 }\n}" + }, + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 40, + "end_line": 5, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 5 + } + }, + "3": { + "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": 73, + "end_line": 7, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 5, + "start_line": 7 + } + }, + "4": { + "accessible_scopes": [ + "starkware.cairo.lang.compiler.lib.registers", + "starkware.cairo.lang.compiler.lib.registers.get_ap" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 16, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 28, + "start_line": 16 + } + }, + "6": { + "accessible_scopes": [ + "starkware.cairo.lang.compiler.lib.registers", + "starkware.cairo.lang.compiler.lib.registers.get_ap" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 20, + "start_line": 17 + } + }, + "8": { + "accessible_scopes": [ + "starkware.cairo.lang.compiler.lib.registers", + "starkware.cairo.lang.compiler.lib.registers.get_ap" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "9": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 11, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 7 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 12, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "11": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "13": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 17, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "14": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 90 + } + }, + "16": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "17": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "18": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "19": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "20": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "21": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 96, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 96 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 100 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 99 + } + }, + "23": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 26, + "start_line": 100 + } + }, + "24": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 57, + "start_line": 100 + } + }, + "25": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 100 + } + }, + "26": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 276, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 65, + "start_line": 276 + } + }, + "28": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 276, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 276 + } + }, + "29": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 95, + "end_line": 277, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 277 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 60, + "end_line": 278, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 279, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 278 + } + }, + "31": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 279, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 30, + "start_line": 279 + } + }, + "32": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 279, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 279 + } + }, + "33": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 372, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 372 + } + }, + "35": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "36": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "37": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "38": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 374, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 374 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 375 + } + }, + "40": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + } + }, + "41": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 392 + } + }, + "43": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "44": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "45": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "46": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "47": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "48": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 85, + "end_line": 394, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 394 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 395 + } + }, + "50": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + } + }, + "51": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_tx_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 446, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 56, + "start_line": 446 + } + }, + "53": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_tx_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 446, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 446 + } + }, + "54": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_tx_info" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 86, + "end_line": 447, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 447 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 449, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 450, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 450 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 449 + } + }, + "56": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_tx_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 450, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 21, + "start_line": 450 + } + }, + "57": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_tx_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 450, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 450 + } + }, + "58": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "60": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "62": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "63": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "65": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "66": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "68": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "69": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 15, + "start_line": 15 + }, + "While handling calldata argument 'implementation'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "70": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While handling calldata argument 'implementation'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "72": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "73": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "75": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "76": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "77": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "78": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "80": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "81": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "82": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/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 + } + }, + "83": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "84": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "86": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "87": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "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": 25 + } + }, + "88": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "89": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "91": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "92": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "93": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "94": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "96": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "97": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "98": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "99": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "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": 30, + "start_line": 60 + } + }, + "100": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 60 + } + }, + "101": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 60 + } + }, + "102": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 61, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 44, + "start_line": 63 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "103": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + } + }, + "105": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 64 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 63 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "106": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 64 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 63 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "107": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 61, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 64 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "108": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 64 + } + }, + "110": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 64 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "111": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 63 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "112": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 64 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "113": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + } + }, + "114": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 312, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 13, + "start_line": 312 + } + }, + "116": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 315, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 25, + "start_line": 315 + } + }, + "117": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 317, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 317 + } + }, + "118": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 318, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 318 + } + }, + "119": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 319, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 319 + } + }, + "120": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 320, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 26, + "start_line": 320 + } + }, + "121": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 321, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 22, + "start_line": 321 + } + }, + "122": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 322, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 28, + "start_line": 322 + } + }, + "123": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 323, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 28, + "start_line": 323 + } + }, + "124": { + "accessible_scopes": [ + "src.account.library", + "src.account.library.Account", + "src.account.library.Account.parse_initializer_signature_aux_data" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 325, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/src/account/library.cairo" + }, + "start_col": 9, + "start_line": 314 + } + }, + "125": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 19, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 24, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 21, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 19 + } + }, + "126": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 24, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 21, + "start_line": 24 + } + }, + "128": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 26, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "129": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 26, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 32, + "start_line": 26 + } + }, + "130": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 27, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 47, + "start_line": 25 + } + }, + "132": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 25, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 30, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 25, + "start_line": 30 + }, + "While expanding the reference 'actual_impl' in:" + ], + "start_col": 10, + "start_line": 25 + } + }, + "133": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 30, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "135": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 33, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 36, + "start_line": 33 + }, + "While expanding the reference 'public_key' in:" + ], + "start_col": 3, + "start_line": 22 + } + }, + "136": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 33, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 31, + "start_line": 33 + } + }, + "138": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 33, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 31, + "start_line": 33 + } + }, + "140": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 444, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 24, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 39, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 5, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 24 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 444 + } + }, + "141": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 25, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 35, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 20, + "start_line": 35 + }, + "While expanding the reference 'actual_impl' in:" + ], + "start_col": 10, + "start_line": 25 + } + }, + "142": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 36, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 27, + "start_line": 36 + } + }, + "144": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 37, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 23, + "start_line": 37 + } + }, + "146": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 33, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 38, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 18, + "start_line": 38 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 13, + "start_line": 33 + } + }, + "147": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 39, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 5, + "start_line": 34 + } + }, + "149": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 39, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 41, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 5, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 34 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + } + }, + "150": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 20, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 41, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 5, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 20 + } + }, + "151": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 21, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 41, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 5, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 21 + } + }, + "152": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 25, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 41, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 31, + "start_line": 41 + }, + "While expanding the reference 'actual_impl' in:" + ], + "start_col": 10, + "start_line": 25 + } + }, + "153": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 41, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 5, + "start_line": 41 + } + }, + "155": { + "accessible_scopes": ["__main__", "__main__", "__main__.initializer"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 43, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "156": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fcae171a11efdbb3d6f68abb567d4209a3b5b40b77b7badc1698f31527b74fb9.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 22 + }, + "While handling calldata argument 'public_key'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "158": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "159": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 19, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 19 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "160": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 20, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 20 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "161": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 21, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "162": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/fcae171a11efdbb3d6f68abb567d4209a3b5b40b77b7badc1698f31527b74fb9.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 153, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 128, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_public_key' in:" + ], + "start_col": 3, + "start_line": 22 + }, + "While handling calldata argument 'public_key'" + ], + "start_col": 33, + "start_line": 1 + } + }, + "163": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + } + }, + "165": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "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/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "167": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "168": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "169": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "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": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "170": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "172": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/initializer/f17d1b7727f3569ff43c4ebf78ae9e4a75a5fc622bff843043f7400f1ba413ea.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "173": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initializer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/account/AccountBaseImpl.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "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": {} + } + } + ], + "9": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.value)\nassert ids.value % PRIME != 0, f'assert_not_zero failed: {ids.value} = 0.'", + "flow_tracking_data": { + "ap_tracking": { + "group": 3, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_not_zero.value": 0 + } + } + } + ], + "21": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "code": "syscall_handler.library_call(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 4, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.library_call.syscall_ptr": 1 + } + } + } + ], + "29": [ + { + "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": 5, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.get_contract_address.syscall_ptr": 2 + } + } + } + ], + "38": [ + { + "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": 6, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 3 + } + } + } + ], + "48": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "code": "syscall_handler.emit_event(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 7, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.emit_event.syscall_ptr": 4 + } + } + } + ], + "54": [ + { + "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": 8, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.get_tx_info.syscall_ptr": 5 + } + } + } + ], + "165": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initializer" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 15, + "offset": 102 + }, + "reference_ids": {} + } + } + ] + }, + "identifiers": { + "__main__.Account": { + "destination": "src.account.library.Account", + "type": "alias" + }, + "__main__.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "__main__.INITIALIZER_SELECTOR": { + "destination": "src.utils.constants.INITIALIZER_SELECTOR", + "type": "alias" + }, + "__main__.Proxy": { + "destination": "lib.openzeppelin.upgrades.library.Proxy", + "type": "alias" + }, + "__main__.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "__main__.get_contract_address": { + "destination": "starkware.starknet.common.syscalls.get_contract_address", + "type": "alias" + }, + "__main__.get_tx_info": { + "destination": "starkware.starknet.common.syscalls.get_tx_info", + "type": "alias" + }, + "__main__.initializer": { + "decorators": ["external"], + "pc": 125, + "type": "function" + }, + "__main__.initializer.Args": { + "full_name": "__main__.initializer.Args", + "members": { + "public_key": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.initializer.ImplicitArgs": { + "full_name": "__main__.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" + }, + "__main__.initializer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.initializer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.library_call": { + "destination": "starkware.starknet.common.syscalls.library_call", + "type": "alias" + }, + "__wrappers__.initializer": { + "decorators": ["external"], + "pc": 156, + "type": "function" + }, + "__wrappers__.initializer.Args": { + "full_name": "__wrappers__.initializer.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.initializer.ImplicitArgs": { + "full_name": "__wrappers__.initializer.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.initializer.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.initializer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.initializer.__wrapped_func": { + "destination": "__main__.initializer", + "type": "alias" + }, + "__wrappers__.initializer_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation": { + "decorators": [], + "pc": 99, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy._set_implementation.Args", + "members": { + "new_implementation": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy._set_implementation.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" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_admin": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr": { + "decorators": [], + "pc": 82, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.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" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write": { + "decorators": [], + "pc": 87, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.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" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_initialized.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_initialized.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Upgraded": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Upgraded.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Upgraded.SELECTOR": { + "type": "const", + "value": 1291924484015741933195105472014600539495279993452337828418116470835452386035 + }, + "lib.openzeppelin.upgrades.library.Upgraded.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Upgraded.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit": { + "decorators": [], + "pc": 58, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.emit.Args", + "members": { + "implementation": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Upgraded.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.get_caller_address": { + "destination": "starkware.starknet.common.syscalls.get_caller_address", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.bigint.BASE": { + "destination": "lib.secp256r1.src.secp256r1.constants.BASE", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.bigint.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.constants.A0": { + "type": "const", + "value": 77371252455336267181195260 + }, + "lib.secp256r1.src.secp256r1.constants.A1": { + "type": "const", + "value": 1023 + }, + "lib.secp256r1.src.secp256r1.constants.A2": { + "type": "const", + "value": 19342813109330467168976896 + }, + "lib.secp256r1.src.secp256r1.constants.B0": { + "type": "const", + "value": 23805269282153275520606283 + }, + "lib.secp256r1.src.secp256r1.constants.B1": { + "type": "const", + "value": 64478498050055519801623345 + }, + "lib.secp256r1.src.secp256r1.constants.B2": { + "type": "const", + "value": 6858709101169761702330043 + }, + "lib.secp256r1.src.secp256r1.constants.BASE": { + "type": "const", + "value": 77371252455336267181195264 + }, + "lib.secp256r1.src.secp256r1.constants.GX0": { + "type": "const", + "value": 52227620040540588600771222 + }, + "lib.secp256r1.src.secp256r1.constants.GX1": { + "type": "const", + "value": 33347259622618539004134583 + }, + "lib.secp256r1.src.secp256r1.constants.GX2": { + "type": "const", + "value": 8091721874918813684698062 + }, + "lib.secp256r1.src.secp256r1.constants.GY0": { + "type": "const", + "value": 59685082318776612195095029 + }, + "lib.secp256r1.src.secp256r1.constants.GY1": { + "type": "const", + "value": 54599710628478995760242092 + }, + "lib.secp256r1.src.secp256r1.constants.GY2": { + "type": "const", + "value": 6036146923926000695307902 + }, + "lib.secp256r1.src.secp256r1.constants.N0": { + "type": "const", + "value": 28553880287938765337601361 + }, + "lib.secp256r1.src.secp256r1.constants.N1": { + "type": "const", + "value": 77371252455335114450843292 + }, + "lib.secp256r1.src.secp256r1.constants.N2": { + "type": "const", + "value": 19342813109330467168976895 + }, + "lib.secp256r1.src.secp256r1.constants.P0": { + "type": "const", + "value": 77371252455336267181195263 + }, + "lib.secp256r1.src.secp256r1.constants.P1": { + "type": "const", + "value": 1023 + }, + "lib.secp256r1.src.secp256r1.constants.P2": { + "type": "const", + "value": 19342813109330467168976896 + }, + "lib.secp256r1.src.secp256r1.constants.SECP_REM": { + "type": "const", + "value": 26959946660873538059280334323183841250350249843923952699046031785985 + }, + "lib.secp256r1.src.secp256r1.constants.SECP_REM0": { + "type": "const", + "value": 1 + }, + "lib.secp256r1.src.secp256r1.constants.SECP_REM1": { + "type": "const", + "value": -1024 + }, + "lib.secp256r1.src.secp256r1.constants.SECP_REM2": { + "type": "const", + "value": 4503599626321920 + }, + "lib.secp256r1.src.secp256r1.constants.r0": { + "type": "const", + "value": 4 + }, + "lib.secp256r1.src.secp256r1.constants.r1": { + "type": "const", + "value": -4096 + }, + "lib.secp256r1.src.secp256r1.constants.r2": { + "type": "const", + "value": 18014398505287680 + }, + "lib.secp256r1.src.secp256r1.constants.s0": { + "type": "const", + "value": 72057594037927936 + }, + "lib.secp256r1.src.secp256r1.constants.s1": { + "type": "const", + "value": -73786976294838206460 + }, + "lib.secp256r1.src.secp256r1.constants.s2": { + "type": "const", + "value": -75557863725914323423232 + }, + "lib.secp256r1.src.secp256r1.ec.A0": { + "destination": "lib.secp256r1.src.secp256r1.constants.A0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.A1": { + "destination": "lib.secp256r1.src.secp256r1.constants.A1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.A2": { + "destination": "lib.secp256r1.src.secp256r1.constants.A2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.B0": { + "destination": "lib.secp256r1.src.secp256r1.constants.B0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.B1": { + "destination": "lib.secp256r1.src.secp256r1.constants.B1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.B2": { + "destination": "lib.secp256r1.src.secp256r1.constants.B2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.EcPoint": { + "destination": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.UnreducedBigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.is_zero": { + "destination": "lib.secp256r1.src.secp256r1.field.is_zero", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.nondet_bigint3": { + "destination": "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.reduce": { + "destination": "lib.secp256r1.src.secp256r1.field.reduce", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.unreduced_mul": { + "destination": "lib.secp256r1.src.secp256r1.field.unreduced_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.unreduced_sqr": { + "destination": "lib.secp256r1.src.secp256r1.field.unreduced_sqr", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec.verify_zero": { + "destination": "lib.secp256r1.src.secp256r1.field.verify_zero", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.EcPoint": { + "destination": "lib.secp256r1.src.secp256r1.ec.EcPoint", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.Window": { + "full_name": "lib.secp256r1.src.secp256r1.ec_mulmuladd.Window", + "members": { + "G": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 0 + }, + "Q": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 6 + }, + "W10": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 54 + }, + "W11": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 60 + }, + "W12": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 66 + }, + "W13": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 72 + }, + "W14": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 78 + }, + "W15": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 84 + }, + "W3": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 12 + }, + "W4": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 18 + }, + "W5": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 24 + }, + "W6": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 30 + }, + "W7": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 36 + }, + "W8": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 42 + }, + "W9": { + "cairo_type": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "offset": 48 + } + }, + "size": 90, + "type": "struct" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_add": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_add", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_double": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_double", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mul": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.EcPoint": { + "destination": "lib.secp256r1.src.secp256r1.ec.EcPoint", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.Window": { + "destination": "lib.secp256r1.src.secp256r1.ec_mulmuladd.Window", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_add": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_add", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_double": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_double", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mul": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladd_W_inner": { + "destination": "lib.secp256r1.src.secp256r1.ec_mulmuladd.ec_mulmuladd_W_inner", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.BASE": { + "destination": "lib.secp256r1.src.secp256r1.constants.BASE", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.P0": { + "destination": "lib.secp256r1.src.secp256r1.constants.P0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.P1": { + "destination": "lib.secp256r1.src.secp256r1.constants.P1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.P2": { + "destination": "lib.secp256r1.src.secp256r1.constants.P2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.SECP_REM": { + "destination": "lib.secp256r1.src.secp256r1.constants.SECP_REM", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.SECP_REM0": { + "destination": "lib.secp256r1.src.secp256r1.constants.SECP_REM0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.SECP_REM1": { + "destination": "lib.secp256r1.src.secp256r1.constants.SECP_REM1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.SECP_REM2": { + "destination": "lib.secp256r1.src.secp256r1.constants.SECP_REM2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.UnreducedBigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.nondet_bigint3": { + "destination": "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.r0": { + "destination": "lib.secp256r1.src.secp256r1.constants.r0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.r1": { + "destination": "lib.secp256r1.src.secp256r1.constants.r1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.r2": { + "destination": "lib.secp256r1.src.secp256r1.constants.r2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.s0": { + "destination": "lib.secp256r1.src.secp256r1.constants.s0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.s1": { + "destination": "lib.secp256r1.src.secp256r1.constants.s1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.field.s2": { + "destination": "lib.secp256r1.src.secp256r1.constants.s2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.A0": { + "destination": "lib.secp256r1.src.secp256r1.constants.A0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.A1": { + "destination": "lib.secp256r1.src.secp256r1.constants.A1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.A2": { + "destination": "lib.secp256r1.src.secp256r1.constants.A2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.B0": { + "destination": "lib.secp256r1.src.secp256r1.constants.B0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.B1": { + "destination": "lib.secp256r1.src.secp256r1.constants.B1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.B2": { + "destination": "lib.secp256r1.src.secp256r1.constants.B2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.BASE": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BASE", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.BitwiseBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.EcPoint": { + "destination": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GX0": { + "destination": "lib.secp256r1.src.secp256r1.constants.GX0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GX1": { + "destination": "lib.secp256r1.src.secp256r1.constants.GX1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GX2": { + "destination": "lib.secp256r1.src.secp256r1.constants.GX2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GY0": { + "destination": "lib.secp256r1.src.secp256r1.constants.GY0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GY1": { + "destination": "lib.secp256r1.src.secp256r1.constants.GY1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.GY2": { + "destination": "lib.secp256r1.src.secp256r1.constants.GY2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.N0": { + "destination": "lib.secp256r1.src.secp256r1.constants.N0", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.N1": { + "destination": "lib.secp256r1.src.secp256r1.constants.N1", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.N2": { + "destination": "lib.secp256r1.src.secp256r1.constants.N2", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.RC_BOUND": { + "destination": "starkware.cairo.common.math_cmp.RC_BOUND", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.UnreducedBigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.assert_nn": { + "destination": "starkware.cairo.common.math.assert_nn", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.assert_nn_le": { + "destination": "starkware.cairo.common.math.assert_nn_le", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.bigint_mul": { + "destination": "starkware.cairo.common.cairo_secp.bigint.bigint_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.bitwise_and": { + "destination": "starkware.cairo.common.bitwise.bitwise_and", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.ec_add": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_add", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.ec_mul": { + "destination": "lib.secp256r1.src.secp256r1.ec.ec_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.ec_mulmuladdW_bg3": { + "destination": "lib.secp256r1.src.secp256r1.ec_mulmuladd_secp256r1.ec_mulmuladdW_bg3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.nondet_bigint3": { + "destination": "lib.secp256r1.src.secp256r1.bigint.nondet_bigint3", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.unreduced_mul": { + "destination": "lib.secp256r1.src.secp256r1.field.unreduced_mul", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.unreduced_sqr": { + "destination": "lib.secp256r1.src.secp256r1.field.unreduced_sqr", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.unsigned_div_rem": { + "destination": "starkware.cairo.common.math.unsigned_div_rem", + "type": "alias" + }, + "lib.secp256r1.src.secp256r1.signature.verify_zero": { + "destination": "lib.secp256r1.src.secp256r1.field.verify_zero", + "type": "alias" + }, + "src.account.library.ACCOUNT_DEFAULT_EXECUTION_TIME_DELAY_SEC": { + "destination": "src.utils.constants.ACCOUNT_DEFAULT_EXECUTION_TIME_DELAY_SEC", + "type": "alias" + }, + "src.account.library.ACCOUNT_IMPL_VERSION": { + "destination": "src.utils.constants.ACCOUNT_IMPL_VERSION", + "type": "alias" + }, + "src.account.library.ADD_SIGNER_SELECTOR": { + "destination": "src.utils.constants.ADD_SIGNER_SELECTOR", + "type": "alias" + }, + "src.account.library.Account": { + "type": "namespace" + }, + "src.account.library.Account.Args": { + "full_name": "src.account.library.Account.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account.ImplicitArgs": { + "full_name": "src.account.library.Account.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account.parse_initializer_signature_aux_data": { + "decorators": [], + "pc": 114, + "type": "function" + }, + "src.account.library.Account.parse_initializer_signature_aux_data.Args": { + "full_name": "src.account.library.Account.parse_initializer_signature_aux_data.Args", + "members": { + "signature": { + "cairo_type": "felt*", + "offset": 1 + }, + "signature_len": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "src.account.library.Account.parse_initializer_signature_aux_data.ImplicitArgs": { + "full_name": "src.account.library.Account.parse_initializer_signature_aux_data.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account.parse_initializer_signature_aux_data.Return": { + "cairo_type": "(actual_impl: felt, hw_signer: src.signers.library.SignerModel)", + "type": "type_definition" + }, + "src.account.library.Account.parse_initializer_signature_aux_data.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.AccountCallArray": { + "full_name": "src.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" + }, + "src.account.library.AccountInitialized": { + "type": "namespace" + }, + "src.account.library.AccountInitialized.Args": { + "full_name": "src.account.library.AccountInitialized.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.AccountInitialized.ImplicitArgs": { + "full_name": "src.account.library.AccountInitialized.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.AccountInitialized.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.AccountInitialized.SELECTOR": { + "type": "const", + "value": 382455535565592867186925905288827112059184245692755099139155826757530483907 + }, + "src.account.library.AccountInitialized.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.AccountInitialized.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.account.library.AccountInitialized.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.account.library.AccountInitialized.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.account.library.Account_execution_time_delay_sec": { + "type": "namespace" + }, + "src.account.library.Account_execution_time_delay_sec.Args": { + "full_name": "src.account.library.Account_execution_time_delay_sec.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_execution_time_delay_sec.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.account.library.Account_execution_time_delay_sec.ImplicitArgs": { + "full_name": "src.account.library.Account_execution_time_delay_sec.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_execution_time_delay_sec.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account_execution_time_delay_sec.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account_execution_time_delay_sec.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.account.library.Account_execution_time_delay_sec.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.account.library.Account_execution_time_delay_sec.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.account.library.Account_execution_time_delay_sec.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.account.library.Account_public_key": { + "destination": "src.signers.library.Account_public_key", + "type": "alias" + }, + "src.account.library.Account_signers": { + "destination": "src.signers.library.Account_signers", + "type": "alias" + }, + "src.account.library.Account_signers_max_index": { + "destination": "src.signers.library.Account_signers_max_index", + "type": "alias" + }, + "src.account.library.Account_storage_migration_version": { + "type": "namespace" + }, + "src.account.library.Account_storage_migration_version.Args": { + "full_name": "src.account.library.Account_storage_migration_version.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_storage_migration_version.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.account.library.Account_storage_migration_version.ImplicitArgs": { + "full_name": "src.account.library.Account_storage_migration_version.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.account.library.Account_storage_migration_version.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.account.library.Account_storage_migration_version.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.account.library.Account_storage_migration_version.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.account.library.Account_storage_migration_version.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.account.library.Account_storage_migration_version.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.account.library.Account_storage_migration_version.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.account.library.CANCEL_DEFERRED_DISABLE_MULTISIG_REQ_SELECTOR": { + "destination": "src.utils.constants.CANCEL_DEFERRED_DISABLE_MULTISIG_REQ_SELECTOR", + "type": "alias" + }, + "src.account.library.CANCEL_DEFERRED_REMOVE_SIGNER_REQ_SELECTOR": { + "destination": "src.utils.constants.CANCEL_DEFERRED_REMOVE_SIGNER_REQ_SELECTOR", + "type": "alias" + }, + "src.account.library.Call": { + "full_name": "src.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" + }, + "src.account.library.DISABLE_MULTISIG_SELECTOR": { + "destination": "src.utils.constants.DISABLE_MULTISIG_SELECTOR", + "type": "alias" + }, + "src.account.library.DISABLE_MULTISIG_WITH_ETD_SELECTOR": { + "destination": "src.utils.constants.DISABLE_MULTISIG_WITH_ETD_SELECTOR", + "type": "alias" + }, + "src.account.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "src.account.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.account.library.IACCOUNT_ID": { + "destination": "src.utils.constants.IACCOUNT_ID", + "type": "alias" + }, + "src.account.library.IACCOUNT_ID_v0x1010102": { + "destination": "src.utils.constants.IACCOUNT_ID_v0x1010102", + "type": "alias" + }, + "src.account.library.IERC165_ID": { + "destination": "src.utils.constants.IERC165_ID", + "type": "alias" + }, + "src.account.library.MIGRATE_STORAGE_SELECTOR": { + "destination": "src.utils.constants.MIGRATE_STORAGE_SELECTOR", + "type": "alias" + }, + "src.account.library.Migrations": { + "destination": "src.migrations.library.Migrations", + "type": "alias" + }, + "src.account.library.Proxy": { + "destination": "lib.openzeppelin.upgrades.library.Proxy", + "type": "alias" + }, + "src.account.library.REMOVE_SIGNER_SELECTOR": { + "destination": "src.utils.constants.REMOVE_SIGNER_SELECTOR", + "type": "alias" + }, + "src.account.library.REMOVE_SIGNER_WITH_ETD_SELECTOR": { + "destination": "src.utils.constants.REMOVE_SIGNER_WITH_ETD_SELECTOR", + "type": "alias" + }, + "src.account.library.SET_MULTISIG_SELECTOR": { + "destination": "src.utils.constants.SET_MULTISIG_SELECTOR", + "type": "alias" + }, + "src.account.library.SIGNER_TYPE_STARK": { + "destination": "src.utils.constants.SIGNER_TYPE_STARK", + "type": "alias" + }, + "src.account.library.SUPPORTS_INTERFACE_SELECTOR": { + "destination": "src.utils.constants.SUPPORTS_INTERFACE_SELECTOR", + "type": "alias" + }, + "src.account.library.SignatureBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", + "type": "alias" + }, + "src.account.library.SignerModel": { + "destination": "src.signers.library.SignerModel", + "type": "alias" + }, + "src.account.library.Signers": { + "destination": "src.signers.library.Signers", + "type": "alias" + }, + "src.account.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "src.account.library.TxInfo": { + "destination": "starkware.starknet.common.syscalls.TxInfo", + "type": "alias" + }, + "src.account.library.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.account.library.assert_not_equal": { + "destination": "starkware.cairo.common.math.assert_not_equal", + "type": "alias" + }, + "src.account.library.call_contract": { + "destination": "starkware.starknet.common.syscalls.call_contract", + "type": "alias" + }, + "src.account.library.get_tx_info": { + "destination": "starkware.starknet.common.syscalls.get_tx_info", + "type": "alias" + }, + "src.account.library.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.account.library.is_not_zero": { + "destination": "starkware.cairo.common.math_cmp.is_not_zero", + "type": "alias" + }, + "src.account.library.library_call": { + "destination": "starkware.starknet.common.syscalls.library_call", + "type": "alias" + }, + "src.account.library.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.migrations.library.Account_signers": { + "destination": "src.signers.library.Account_signers", + "type": "alias" + }, + "src.migrations.library.Account_signers_max_index": { + "destination": "src.signers.library.Account_signers_max_index", + "type": "alias" + }, + "src.migrations.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "src.migrations.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.migrations.library.LEGACY_SIGNER_TYPE_SECP256R1_SWS": { + "type": "const", + "value": 3 + }, + "src.migrations.library.Migrations": { + "type": "namespace" + }, + "src.migrations.library.Migrations.Args": { + "full_name": "src.migrations.library.Migrations.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.migrations.library.Migrations.ImplicitArgs": { + "full_name": "src.migrations.library.Migrations.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.migrations.library.Migrations.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.migrations.library.Migrations.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.migrations.library.SIGNER_TYPE_SECP256R1": { + "destination": "src.utils.constants.SIGNER_TYPE_SECP256R1", + "type": "alias" + }, + "src.migrations.library.SignerModel": { + "destination": "src.signers.library.SignerModel", + "type": "alias" + }, + "src.migrations.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "src.migrations.library.is_le_felt": { + "destination": "starkware.cairo.common.math_cmp.is_le_felt", + "type": "alias" + }, + "src.signers.library.Account_deferred_remove_signer": { + "type": "namespace" + }, + "src.signers.library.Account_deferred_remove_signer.Args": { + "full_name": "src.signers.library.Account_deferred_remove_signer.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_deferred_remove_signer.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.Account_deferred_remove_signer.ImplicitArgs": { + "full_name": "src.signers.library.Account_deferred_remove_signer.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_deferred_remove_signer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_deferred_remove_signer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_deferred_remove_signer.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.signers.library.Account_deferred_remove_signer.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.signers.library.Account_deferred_remove_signer.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.signers.library.Account_deferred_remove_signer.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.signers.library.Account_public_key": { + "type": "namespace" + }, + "src.signers.library.Account_public_key.Args": { + "full_name": "src.signers.library.Account_public_key.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_public_key.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.Account_public_key.ImplicitArgs": { + "full_name": "src.signers.library.Account_public_key.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_public_key.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_public_key.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_public_key.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.signers.library.Account_public_key.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.signers.library.Account_public_key.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.signers.library.Account_public_key.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.signers.library.Account_signers": { + "type": "namespace" + }, + "src.signers.library.Account_signers.Args": { + "full_name": "src.signers.library.Account_signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.Account_signers.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.signers.library.Account_signers.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.signers.library.Account_signers.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.signers.library.Account_signers.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.signers.library.Account_signers_max_index": { + "type": "namespace" + }, + "src.signers.library.Account_signers_max_index.Args": { + "full_name": "src.signers.library.Account_signers_max_index.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_max_index.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.Account_signers_max_index.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers_max_index.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_max_index.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_signers_max_index.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers_max_index.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.signers.library.Account_signers_max_index.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.signers.library.Account_signers_max_index.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.signers.library.Account_signers_max_index.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.signers.library.Account_signers_num_hw_signers": { + "type": "namespace" + }, + "src.signers.library.Account_signers_num_hw_signers.Args": { + "full_name": "src.signers.library.Account_signers_num_hw_signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_num_hw_signers.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.Account_signers_num_hw_signers.ImplicitArgs": { + "full_name": "src.signers.library.Account_signers_num_hw_signers.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Account_signers_num_hw_signers.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Account_signers_num_hw_signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.Account_signers_num_hw_signers.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "src.signers.library.Account_signers_num_hw_signers.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "src.signers.library.Account_signers_num_hw_signers.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "src.signers.library.Account_signers_num_hw_signers.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "src.signers.library.DeferredRemoveSignerRequest": { + "full_name": "src.signers.library.DeferredRemoveSignerRequest", + "members": { + "expire_at": { + "cairo_type": "felt", + "offset": 0 + }, + "signer_id": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "src.signers.library.EcPoint": { + "destination": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "type": "alias" + }, + "src.signers.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "src.signers.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "src.signers.library.IndexedSignerModel": { + "full_name": "src.signers.library.IndexedSignerModel", + "members": { + "index": { + "cairo_type": "felt", + "offset": 0 + }, + "signer": { + "cairo_type": "src.signers.library.SignerModel", + "offset": 1 + } + }, + "size": 8, + "type": "struct" + }, + "src.signers.library.REMOVE_SIGNER_WITH_ETD_SELECTOR": { + "destination": "src.utils.constants.REMOVE_SIGNER_WITH_ETD_SELECTOR", + "type": "alias" + }, + "src.signers.library.SIGNER_TYPE_SECP256R1": { + "destination": "src.utils.constants.SIGNER_TYPE_SECP256R1", + "type": "alias" + }, + "src.signers.library.SIGNER_TYPE_STARK": { + "destination": "src.utils.constants.SIGNER_TYPE_STARK", + "type": "alias" + }, + "src.signers.library.SIGNER_TYPE_UNUSED": { + "destination": "src.utils.constants.SIGNER_TYPE_UNUSED", + "type": "alias" + }, + "src.signers.library.SignatureBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", + "type": "alias" + }, + "src.signers.library.SignerAdded": { + "type": "namespace" + }, + "src.signers.library.SignerAdded.Args": { + "full_name": "src.signers.library.SignerAdded.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerAdded.ImplicitArgs": { + "full_name": "src.signers.library.SignerAdded.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerAdded.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerAdded.SELECTOR": { + "type": "const", + "value": 561929676041071993352637934143063071236106844429250574418910739341905381029 + }, + "src.signers.library.SignerAdded.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.SignerAdded.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.signers.library.SignerAdded.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.signers.library.SignerAdded.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.signers.library.SignerModel": { + "full_name": "src.signers.library.SignerModel", + "members": { + "reserved_0": { + "cairo_type": "felt", + "offset": 5 + }, + "reserved_1": { + "cairo_type": "felt", + "offset": 6 + }, + "signer_0": { + "cairo_type": "felt", + "offset": 0 + }, + "signer_1": { + "cairo_type": "felt", + "offset": 1 + }, + "signer_2": { + "cairo_type": "felt", + "offset": 2 + }, + "signer_3": { + "cairo_type": "felt", + "offset": 3 + }, + "type": { + "cairo_type": "felt", + "offset": 4 + } + }, + "size": 7, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequest": { + "type": "namespace" + }, + "src.signers.library.SignerRemoveRequest.Args": { + "full_name": "src.signers.library.SignerRemoveRequest.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequest.ImplicitArgs": { + "full_name": "src.signers.library.SignerRemoveRequest.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequest.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerRemoveRequest.SELECTOR": { + "type": "const", + "value": 1269813786634352618416790692342807947003436932220265631879446689410606825886 + }, + "src.signers.library.SignerRemoveRequest.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.SignerRemoveRequest.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.signers.library.SignerRemoveRequest.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.signers.library.SignerRemoveRequest.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.signers.library.SignerRemoveRequestCancelled": { + "type": "namespace" + }, + "src.signers.library.SignerRemoveRequestCancelled.Args": { + "full_name": "src.signers.library.SignerRemoveRequestCancelled.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequestCancelled.ImplicitArgs": { + "full_name": "src.signers.library.SignerRemoveRequestCancelled.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoveRequestCancelled.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerRemoveRequestCancelled.SELECTOR": { + "type": "const", + "value": 1132521439627317306714359990251828463150347298149907002176878047570125085598 + }, + "src.signers.library.SignerRemoveRequestCancelled.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.SignerRemoveRequestCancelled.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.signers.library.SignerRemoveRequestCancelled.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.signers.library.SignerRemoveRequestCancelled.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.signers.library.SignerRemoved": { + "type": "namespace" + }, + "src.signers.library.SignerRemoved.Args": { + "full_name": "src.signers.library.SignerRemoved.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoved.ImplicitArgs": { + "full_name": "src.signers.library.SignerRemoved.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.SignerRemoved.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.SignerRemoved.SELECTOR": { + "type": "const", + "value": 1078657755298128285518989235278250467094441506009905078130589280936907098425 + }, + "src.signers.library.SignerRemoved.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.SignerRemoved.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.signers.library.SignerRemoved.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "src.signers.library.SignerRemoved.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "src.signers.library.Signers": { + "type": "namespace" + }, + "src.signers.library.Signers.Args": { + "full_name": "src.signers.library.Signers.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Signers.ImplicitArgs": { + "full_name": "src.signers.library.Signers.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "src.signers.library.Signers.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "src.signers.library.Signers.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "src.signers.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "src.signers.library.TX_VERSION_1_EST_FEE": { + "destination": "src.utils.constants.TX_VERSION_1_EST_FEE", + "type": "alias" + }, + "src.signers.library.TxInfo": { + "destination": "starkware.starknet.common.syscalls.TxInfo", + "type": "alias" + }, + "src.signers.library.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "src.signers.library.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "src.signers.library.assert_not_equal": { + "destination": "starkware.cairo.common.math.assert_not_equal", + "type": "alias" + }, + "src.signers.library.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "src.signers.library.get_block_timestamp": { + "destination": "starkware.starknet.common.syscalls.get_block_timestamp", + "type": "alias" + }, + "src.signers.library.get_tx_info": { + "destination": "starkware.starknet.common.syscalls.get_tx_info", + "type": "alias" + }, + "src.signers.library.is_le_felt": { + "destination": "starkware.cairo.common.math_cmp.is_le_felt", + "type": "alias" + }, + "src.signers.library.is_not_zero": { + "destination": "starkware.cairo.common.math_cmp.is_not_zero", + "type": "alias" + }, + "src.signers.library.split_felt": { + "destination": "starkware.cairo.common.math.split_felt", + "type": "alias" + }, + "src.signers.library.uint256_check": { + "destination": "starkware.cairo.common.uint256.uint256_check", + "type": "alias" + }, + "src.signers.library.uint256_to_bigint": { + "destination": "starkware.cairo.common.cairo_secp.bigint.uint256_to_bigint", + "type": "alias" + }, + "src.signers.library.verify_ecdsa_signature": { + "destination": "starkware.cairo.common.signature.verify_ecdsa_signature", + "type": "alias" + }, + "src.signers.library.verify_point": { + "destination": "lib.secp256r1.src.secp256r1.ec.verify_point", + "type": "alias" + }, + "src.signers.library.verify_secp256r1_signature": { + "destination": "lib.secp256r1.src.secp256r1.signature.verify_secp256r1_signature", + "type": "alias" + }, + "src.utils.constants.ACCOUNT_DEFAULT_EXECUTION_TIME_DELAY_SEC": { + "type": "const", + "value": 345600 + }, + "src.utils.constants.ACCOUNT_IMPL_VERSION": { + "type": "const", + "value": 58256001704608589532901680 + }, + "src.utils.constants.ADD_SIGNER_SELECTOR": { + "type": "const", + "value": 163160470112599928456934797768840367968245733614578848060926957836914140077 + }, + "src.utils.constants.CANCEL_DEFERRED_DISABLE_MULTISIG_REQ_SELECTOR": { + "type": "const", + "value": 2368085011737712558832061853528991504353100933681333270721786327191901518 + }, + "src.utils.constants.CANCEL_DEFERRED_REMOVE_SIGNER_REQ_SELECTOR": { + "type": "const", + "value": 269717755689401876173711085406697014939272590112879486617649727631382791657 + }, + "src.utils.constants.DISABLE_MULTISIG_SELECTOR": { + "type": "const", + "value": 1758259583752551939040810879209073852335166648624686940608467553891753933031 + }, + "src.utils.constants.DISABLE_MULTISIG_WITH_ETD_SELECTOR": { + "type": "const", + "value": 174813914610141181835653391265740007128686786058622343737933013940855989184 + }, + "src.utils.constants.IACCOUNT_ID": { + "type": "const", + "value": 2792084853 + }, + "src.utils.constants.IACCOUNT_ID_v0x1010102": { + "type": "const", + "value": 4044209476 + }, + "src.utils.constants.IERC165_ID": { + "type": "const", + "value": 33540519 + }, + "src.utils.constants.IERC721_ENUMERABLE_ID": { + "type": "const", + "value": 2014223715 + }, + "src.utils.constants.IERC721_ID": { + "type": "const", + "value": 2158778573 + }, + "src.utils.constants.IERC721_METADATA_ID": { + "type": "const", + "value": 1532892063 + }, + "src.utils.constants.IERC721_RECEIVER_ID": { + "type": "const", + "value": 353073666 + }, + "src.utils.constants.INITIALIZER_SELECTOR": { + "type": "const", + "value": 1295919550572838631247819983596733806859788957403169325509326258146877103642 + }, + "src.utils.constants.INVALID_ID": { + "type": "const", + "value": 4294967295 + }, + "src.utils.constants.MIGRATE_STORAGE_SELECTOR": { + "type": "const", + "value": 522038773094464137401434129447374078914611256157886368771002985264489953033 + }, + "src.utils.constants.MULTISIG_PENDING_TXN_EXPIRY_BLOCK_NUM": { + "type": "const", + "value": 3 + }, + "src.utils.constants.MULTISIG_PENDING_TXN_EXPIRY_SEC": { + "type": "const", + "value": 300 + }, + "src.utils.constants.REMOVE_SIGNER_SELECTOR": { + "type": "const", + "value": 409261550851542507680168322314239740979393570425390024668899463010292902806 + }, + "src.utils.constants.REMOVE_SIGNER_WITH_ETD_SELECTOR": { + "type": "const", + "value": 1189488687767662123356698053193137082046618410956870915062359977563328943793 + }, + "src.utils.constants.SET_MULTISIG_SELECTOR": { + "type": "const", + "value": 979263662673215070237784411221295853154410968114948506634943934754177391346 + }, + "src.utils.constants.SIGNER_TYPE_SECP256R1": { + "type": "const", + "value": 2 + }, + "src.utils.constants.SIGNER_TYPE_STARK": { + "type": "const", + "value": 1 + }, + "src.utils.constants.SIGNER_TYPE_UNUSED": { + "type": "const", + "value": 0 + }, + "src.utils.constants.SIGN_PENDING_MULTISIG_TXN_SELECTOR": { + "type": "const", + "value": 739140450142317551736190475027448397206197387125691924280419642098391765544 + }, + "src.utils.constants.SUPPORTS_INTERFACE_SELECTOR": { + "type": "const", + "value": 1184015894760294494673613438913361435336722154500302038630992932234692784845 + }, + "src.utils.constants.TX_VERSION_0": { + "type": "const", + "value": 0 + }, + "src.utils.constants.TX_VERSION_0_EST_FEE": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "src.utils.constants.TX_VERSION_1": { + "type": "const", + "value": 1 + }, + "src.utils.constants.TX_VERSION_1_EST_FEE": { + "type": "const", + "value": 340282366920938463463374607431768211457 + }, + "src.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.bitwise.ALL_ONES": { + "type": "const", + "value": -106710729501573572985208420194530329073740042555888586719234 + }, + "starkware.cairo.common.bitwise.BitwiseBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "type": "alias" + }, + "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.KeccakBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", + "members": { + "input": { + "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "offset": 0 + }, + "output": { + "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "offset": 8 + } + }, + "size": 16, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { + "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "type": "alias" + }, + "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.cairo_secp.bigint.BASE": { + "destination": "starkware.cairo.common.cairo_secp.constants.BASE", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.bigint.BigInt3": { + "full_name": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "members": { + "d0": { + "cairo_type": "felt", + "offset": 0 + }, + "d1": { + "cairo_type": "felt", + "offset": 1 + }, + "d2": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.bigint.RC_BOUND": { + "destination": "starkware.cairo.common.math_cmp.RC_BOUND", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.bigint.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3": { + "full_name": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "members": { + "d0": { + "cairo_type": "felt", + "offset": 0 + }, + "d1": { + "cairo_type": "felt", + "offset": 1 + }, + "d2": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt5": { + "full_name": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt5", + "members": { + "d0": { + "cairo_type": "felt", + "offset": 0 + }, + "d1": { + "cairo_type": "felt", + "offset": 1 + }, + "d2": { + "cairo_type": "felt", + "offset": 2 + }, + "d3": { + "cairo_type": "felt", + "offset": 3 + }, + "d4": { + "cairo_type": "felt", + "offset": 4 + } + }, + "size": 5, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.bigint.assert_nn": { + "destination": "starkware.cairo.common.math.assert_nn", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.bigint.assert_nn_le": { + "destination": "starkware.cairo.common.math.assert_nn_le", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.bigint.unsigned_div_rem": { + "destination": "starkware.cairo.common.math.unsigned_div_rem", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.constants.BASE": { + "type": "const", + "value": 77371252455336267181195264 + }, + "starkware.cairo.common.cairo_secp.constants.BETA": { + "type": "const", + "value": 7 + }, + "starkware.cairo.common.cairo_secp.constants.N0": { + "type": "const", + "value": 10428087374290690730508609 + }, + "starkware.cairo.common.cairo_secp.constants.N1": { + "type": "const", + "value": 77371252455330678278691517 + }, + "starkware.cairo.common.cairo_secp.constants.N2": { + "type": "const", + "value": 19342813113834066795298815 + }, + "starkware.cairo.common.cairo_secp.constants.P0": { + "type": "const", + "value": 77371252455336262886226991 + }, + "starkware.cairo.common.cairo_secp.constants.P1": { + "type": "const", + "value": 77371252455336267181195263 + }, + "starkware.cairo.common.cairo_secp.constants.P2": { + "type": "const", + "value": 19342813113834066795298815 + }, + "starkware.cairo.common.cairo_secp.constants.SECP_REM": { + "type": "const", + "value": 4294968273 + }, + "starkware.cairo.common.cairo_secp.ec.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.EcPoint": { + "full_name": "starkware.cairo.common.cairo_secp.ec.EcPoint", + "members": { + "x": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 0 + }, + "y": { + "cairo_type": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "offset": 3 + } + }, + "size": 6, + "type": "struct" + }, + "starkware.cairo.common.cairo_secp.ec.UnreducedBigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.is_zero": { + "destination": "starkware.cairo.common.cairo_secp.field.is_zero", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.nondet_bigint3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.nondet_bigint3", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.unreduced_mul": { + "destination": "starkware.cairo.common.cairo_secp.field.unreduced_mul", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.unreduced_sqr": { + "destination": "starkware.cairo.common.cairo_secp.field.unreduced_sqr", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.ec.verify_zero": { + "destination": "starkware.cairo.common.cairo_secp.field.verify_zero", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.BASE": { + "destination": "starkware.cairo.common.cairo_secp.constants.BASE", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.BigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.BigInt3", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.P0": { + "destination": "starkware.cairo.common.cairo_secp.constants.P0", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.P1": { + "destination": "starkware.cairo.common.cairo_secp.constants.P1", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.P2": { + "destination": "starkware.cairo.common.cairo_secp.constants.P2", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.SECP_REM": { + "destination": "starkware.cairo.common.cairo_secp.constants.SECP_REM", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.UnreducedBigInt3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.UnreducedBigInt3", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.assert_nn_le": { + "destination": "starkware.cairo.common.math.assert_nn_le", + "type": "alias" + }, + "starkware.cairo.common.cairo_secp.field.nondet_bigint3": { + "destination": "starkware.cairo.common.cairo_secp.bigint.nondet_bigint3", + "type": "alias" + }, + "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.EcOpBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", + "type": "alias" + }, + "starkware.cairo.common.ec.EcPoint": { + "destination": "starkware.cairo.common.ec_point.EcPoint", + "type": "alias" + }, + "starkware.cairo.common.ec.StarkCurve": { + "type": "namespace" + }, + "starkware.cairo.common.ec.StarkCurve.ALPHA": { + "type": "const", + "value": 1 + }, + "starkware.cairo.common.ec.StarkCurve.Args": { + "full_name": "starkware.cairo.common.ec.StarkCurve.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.ec.StarkCurve.BETA": { + "type": "const", + "value": -476910135076337975234679399815567221425937815956490878998147463828055613816 + }, + "starkware.cairo.common.ec.StarkCurve.GEN_X": { + "type": "const", + "value": 874739451078007766457464989774322083649278607533249481151382481072868806602 + }, + "starkware.cairo.common.ec.StarkCurve.GEN_Y": { + "type": "const", + "value": 152666792071518830868575557812948353041420400780739481342941381225525861407 + }, + "starkware.cairo.common.ec.StarkCurve.ImplicitArgs": { + "full_name": "starkware.cairo.common.ec.StarkCurve.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.ec.StarkCurve.ORDER": { + "type": "const", + "value": -96363463615509210819012598251359154898 + }, + "starkware.cairo.common.ec.StarkCurve.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.ec.StarkCurve.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.ec.is_quad_residue": { + "destination": "starkware.cairo.common.math.is_quad_residue", + "type": "alias" + }, + "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.keccak_state.KeccakBuiltinState": { + "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "members": { + "s0": { + "cairo_type": "felt", + "offset": 0 + }, + "s1": { + "cairo_type": "felt", + "offset": 1 + }, + "s2": { + "cairo_type": "felt", + "offset": 2 + }, + "s3": { + "cairo_type": "felt", + "offset": 3 + }, + "s4": { + "cairo_type": "felt", + "offset": 4 + }, + "s5": { + "cairo_type": "felt", + "offset": 5 + }, + "s6": { + "cairo_type": "felt", + "offset": 6 + }, + "s7": { + "cairo_type": "felt", + "offset": 7 + } + }, + "size": 8, + "type": "struct" + }, + "starkware.cairo.common.math.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "starkware.cairo.common.math.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "starkware.cairo.common.math.assert_not_zero": { + "decorators": [], + "pc": 9, + "type": "function" + }, + "starkware.cairo.common.math.assert_not_zero.Args": { + "full_name": "starkware.cairo.common.math.assert_not_zero.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_not_zero.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_not_zero.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.math.assert_not_zero.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_not_zero.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_not_zero.value": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_not_zero.value", + "references": [ + { + "ap_tracking_data": { + "group": 3, + "offset": 0 + }, + "pc": 9, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math_cmp.RC_BOUND": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "starkware.cairo.common.math_cmp.assert_le_felt": { + "destination": "starkware.cairo.common.math.assert_le_felt", + "type": "alias" + }, + "starkware.cairo.common.math_cmp.assert_lt_felt": { + "destination": "starkware.cairo.common.math.assert_lt_felt", + "type": "alias" + }, + "starkware.cairo.common.pow.assert_le": { + "destination": "starkware.cairo.common.math.assert_le", + "type": "alias" + }, + "starkware.cairo.common.pow.get_ap": { + "destination": "starkware.cairo.common.registers.get_ap", + "type": "alias" + }, + "starkware.cairo.common.pow.get_fp_and_pc": { + "destination": "starkware.cairo.common.registers.get_fp_and_pc", + "type": "alias" + }, + "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.EcOpBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", + "type": "alias" + }, + "starkware.cairo.common.signature.EcPoint": { + "destination": "starkware.cairo.common.ec_point.EcPoint", + "type": "alias" + }, + "starkware.cairo.common.signature.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "starkware.cairo.common.signature.SignatureBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", + "type": "alias" + }, + "starkware.cairo.common.signature.StarkCurve": { + "destination": "starkware.cairo.common.ec.StarkCurve", + "type": "alias" + }, + "starkware.cairo.common.signature.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "starkware.cairo.common.signature.ec_add": { + "destination": "starkware.cairo.common.ec.ec_add", + "type": "alias" + }, + "starkware.cairo.common.signature.ec_mul": { + "destination": "starkware.cairo.common.ec.ec_mul", + "type": "alias" + }, + "starkware.cairo.common.signature.ec_sub": { + "destination": "starkware.cairo.common.ec.ec_sub", + "type": "alias" + }, + "starkware.cairo.common.signature.is_x_on_curve": { + "destination": "starkware.cairo.common.ec.is_x_on_curve", + "type": "alias" + }, + "starkware.cairo.common.signature.recover_y": { + "destination": "starkware.cairo.common.ec.recover_y", + "type": "alias" + }, + "starkware.cairo.common.uint256.ALL_ONES": { + "type": "const", + "value": 340282366920938463463374607431768211455 + }, + "starkware.cairo.common.uint256.BitwiseBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "type": "alias" + }, + "starkware.cairo.common.uint256.HALF_SHIFT": { + "type": "const", + "value": 18446744073709551616 + }, + "starkware.cairo.common.uint256.SHIFT": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "starkware.cairo.common.uint256.Uint256": { + "full_name": "starkware.cairo.common.uint256.Uint256", + "members": { + "high": { + "cairo_type": "felt", + "offset": 1 + }, + "low": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.uint256.assert_in_range": { + "destination": "starkware.cairo.common.math.assert_in_range", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_le": { + "destination": "starkware.cairo.common.math.assert_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_nn_le": { + "destination": "starkware.cairo.common.math.assert_nn_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_and": { + "destination": "starkware.cairo.common.bitwise.bitwise_and", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_or": { + "destination": "starkware.cairo.common.bitwise.bitwise_or", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_xor": { + "destination": "starkware.cairo.common.bitwise.bitwise_xor", + "type": "alias" + }, + "starkware.cairo.common.uint256.get_ap": { + "destination": "starkware.cairo.common.registers.get_ap", + "type": "alias" + }, + "starkware.cairo.common.uint256.get_fp_and_pc": { + "destination": "starkware.cairo.common.registers.get_fp_and_pc", + "type": "alias" + }, + "starkware.cairo.common.uint256.is_le": { + "destination": "starkware.cairo.common.math_cmp.is_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.pow": { + "destination": "starkware.cairo.common.pow.pow", + "type": "alias" + }, + "starkware.cairo.lang.compiler.lib.registers.get_ap": { + "decorators": ["known_ap_change"], + "pc": 4, + "type": "function" + }, + "starkware.cairo.lang.compiler.lib.registers.get_ap.Args": { + "full_name": "starkware.cairo.lang.compiler.lib.registers.get_ap.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.lang.compiler.lib.registers.get_ap.ImplicitArgs": { + "full_name": "starkware.cairo.lang.compiler.lib.registers.get_ap.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.lang.compiler.lib.registers.get_ap.Return": { + "cairo_type": "(ap_val: felt*)", + "type": "type_definition" + }, + "starkware.cairo.lang.compiler.lib.registers.get_ap.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc": { + "decorators": [], + "pc": 3, + "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.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 + }, + "deploy_from_zero": { + "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 + }, + "nonce": { + "cairo_type": "felt", + "offset": 7 + }, + "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": 8, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event": { + "decorators": [], + "pc": 41, + "type": "function" + }, + "starkware.starknet.common.syscalls.emit_event.Args": { + "full_name": "starkware.starknet.common.syscalls.emit_event.Args", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 3 + }, + "data_len": { + "cairo_type": "felt", + "offset": 2 + }, + "keys": { + "cairo_type": "felt*", + "offset": 1 + }, + "keys_len": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.emit_event.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.emit_event.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.emit_event.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.emit_event.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 7, + "offset": 0 + }, + "pc": 41, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 7, + "offset": 1 + }, + "pc": 48, + "value": "cast([fp + (-7)] + 5, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.get_contract_address": { + "decorators": [], + "pc": 26, + "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": 5, + "offset": 0 + }, + "pc": 26, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 5, + "offset": 1 + }, + "pc": 29, + "value": "cast([fp + (-3)] + 2, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.get_tx_info": { + "decorators": [], + "pc": 51, + "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": 8, + "offset": 0 + }, + "pc": 51, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 8, + "offset": 1 + }, + "pc": 54, + "value": "cast([fp + (-3)] + 2, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.library_call": { + "decorators": [], + "pc": 14, + "type": "function" + }, + "starkware.starknet.common.syscalls.library_call.Args": { + "full_name": "starkware.starknet.common.syscalls.library_call.Args", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 3 + }, + "calldata_size": { + "cairo_type": "felt", + "offset": 2 + }, + "class_hash": { + "cairo_type": "felt", + "offset": 0 + }, + "function_selector": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.library_call.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.library_call.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.library_call.Return": { + "cairo_type": "(retdata_size: felt, retdata: felt*)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.library_call.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.library_call.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.library_call.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 4, + "offset": 0 + }, + "pc": 14, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 4, + "offset": 1 + }, + "pc": 21, + "value": "cast([fp + (-7)] + 7, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.storage_write": { + "decorators": [], + "pc": 33, + "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": 6, + "offset": 0 + }, + "pc": 33, + "value": "[cast(fp + (-5), felt**)]" + }, + { + "ap_tracking_data": { + "group": 6, + "offset": 1 + }, + "pc": 38, + "value": "cast([fp + (-5)] + 3, felt*)" + } + ], + "type": "reference" + } + }, + "main_scope": "__main__", + "prime": "0x800000000000011000000000000000000000000000000000000000000000001", + "reference_manager": { + "references": [ + { + "ap_tracking_data": { + "group": 3, + "offset": 0 + }, + "pc": 9, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 4, + "offset": 0 + }, + "pc": 14, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 5, + "offset": 0 + }, + "pc": 26, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 6, + "offset": 0 + }, + "pc": 33, + "value": "[cast(fp + (-5), felt**)]" + }, + { + "ap_tracking_data": { + "group": 7, + "offset": 0 + }, + "pc": 41, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 8, + "offset": 0 + }, + "pc": 51, + "value": "[cast(fp + (-3), felt**)]" + } + ] + } + } +} diff --git a/configs/genesis-assets/BraavosProxy.json b/configs/genesis-assets/BraavosProxy.json new file mode 100644 index 0000000000..91ad405866 --- /dev/null +++ b/configs/genesis-assets/BraavosProxy.json @@ -0,0 +1,10509 @@ +{ + "abi": [ + { + "data": [ + { + "name": "implementation", + "type": "felt" + } + ], + "keys": [], + "name": "Upgraded", + "type": "event" + }, + { + "inputs": [ + { + "name": "implementation_address", + "type": "felt" + }, + { + "name": "initializer_selector", + "type": "felt" + }, + { + "name": "calldata_len", + "type": "felt" + }, + { + "name": "calldata", + "type": "felt*" + } + ], + "name": "constructor", + "outputs": [], + "type": "constructor" + }, + { + "inputs": [], + "name": "get_implementation", + "outputs": [ + { + "name": "implementation", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "selector", + "type": "felt" + }, + { + "name": "calldata_size", + "type": "felt" + }, + { + "name": "calldata", + "type": "felt*" + } + ], + "name": "__default__", + "outputs": [ + { + "name": "retdata_size", + "type": "felt" + }, + { + "name": "retdata", + "type": "felt*" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "selector", + "type": "felt" + }, + { + "name": "calldata_size", + "type": "felt" + }, + { + "name": "calldata", + "type": "felt*" + } + ], + "name": "__l1_default__", + "outputs": [], + "type": "l1_handler" + } + ], + "entry_points_by_type": { + "CONSTRUCTOR": [ + { + "offset": "0x91", + "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194" + } + ], + "EXTERNAL": [ + { + "offset": "0xde", + "selector": "0x0" + }, + { + "offset": "0xbd", + "selector": "0x21691762da057c1b71f851f9b709e0c143628acf6e0cbc9735411a65663d747" + } + ], + "L1_HANDLER": [ + { + "offset": "0xf7", + "selector": "0x0" + } + ] + }, + "program": { + "attributes": [], + "builtins": ["pedersen", "range_check"], + "compiler_version": "0.10.3", + "data": [ + "0x40780017fff7fff", + "0x1", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x4c69627261727943616c6c", + "0x400280007ff97fff", + "0x400380017ff97ffa", + "0x400380027ff97ffb", + "0x400380037ff97ffc", + "0x400380047ff97ffd", + "0x482680017ff98000", + "0x7", + "0x480280057ff98000", + "0x480280067ff98000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x4c69627261727943616c6c4c3148616e646c6572", + "0x400280007ff97fff", + "0x400380017ff97ffa", + "0x400380027ff97ffb", + "0x400380037ff97ffc", + "0x400380047ff97ffd", + "0x482680017ff98000", + "0x7", + "0x480280057ff98000", + "0x480280067ff98000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x53746f7261676552656164", + "0x400280007ffc7fff", + "0x400380017ffc7ffd", + "0x482680017ffc8000", + "0x3", + "0x480280027ffc8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x53746f726167655772697465", + "0x400280007ffb7fff", + "0x400380017ffb7ffc", + "0x400380027ffb7ffd", + "0x482680017ffb8000", + "0x3", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x456d69744576656e74", + "0x400280007ff97fff", + "0x400380017ff97ffa", + "0x400380027ff97ffb", + "0x400380037ff97ffc", + "0x400380047ff97ffd", + "0x482680017ff98000", + "0x5", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffca", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc4", + "0x40137fff7fff8001", + "0x4003800080017ffd", + "0x4826800180018000", + "0x1", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe3", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x3ad34fad732b51fe0d1a1350f149f21a0cf14a9382c9c6e7b262c4e0c8dbf18", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc4", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbe", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc2", + "0x48127ffe7fff8000", + "0x48127fe47fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd6", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", + "0x48127ffd7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff79", + "0x48127ffd7fff8000", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x208b7fff7fff7ffe", + "0x480280027ffb8000", + "0x480280027ffd8000", + "0x400080007ffe7fff", + "0x482680017ffd8000", + "0x3", + "0x480280027ffd8000", + "0x48307fff7ffe8000", + "0x402a7ffd7ffc7fff", + "0x480280027ffb8000", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x482480017ffd8000", + "0x1", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x482680017ffd8000", + "0x3", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffca", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffac", + "0x48127ffc7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff2e", + "0x48127ffd7fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe9", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff91", + "0x48127ffc7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff1f", + "0x48127ffd7fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x208b7fff7fff7ffe", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe" + ], + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.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/8c21749e672c27d9a3ed2818f2aa8cf012801db97d111d79a1a0436aa0e9255d.cairo": "assert [__return_value_ptr] = ret_value.implementation;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo": "assert [__calldata_ptr] = implementation;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo": "let __calldata_arg_calldata_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e873b36f70ba086858da6461bd90d871fa83ad20a246f708b0b2e900747d6cbd.cairo": "let __calldata_arg_implementation_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/eab2f02bb7ddd7dc10d7bea0d0d4bf773a1eb3b40ca36fd52031f4d2a9a62001.cairo": "let __calldata_arg_initializer_selector = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/external/__default__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(selector=[cast(fp + (-6), felt*)], calldata_size=[cast(fp + (-4), felt*)], calldata=[cast(fp + (-3), felt**)],);\nlet retdata_size = ret_value.retdata_size;\nlet retdata = ret_value.retdata;\n", + "autogen/starknet/external/__default__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/__default__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/__default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(selector=[cast(fp + (-6), felt*)], calldata_size=[cast(fp + (-4), felt*)], calldata=[cast(fp + (-3), felt**)],);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/__l1_default__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/__l1_default__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/__l1_default__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/constructor/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(implementation_address=__calldata_arg_implementation_address, initializer_selector=__calldata_arg_initializer_selector, calldata_len=__calldata_arg_calldata_len, calldata=__calldata_arg_calldata,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.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_implementation_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/get_implementation/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_implementation/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_implementation/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_implementation/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/return/get_implementation/5da449dc9e9ebb91941e4a80a9ca5fd51b75728d6e6233ae526d699d10017fa5.cairo": "func get_implementation_encode_return(ret_value: (implementation: felt), range_check_ptr) -> (\n range_check_ptr: felt, 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 }\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);\n}\n", + "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo": "namespace Proxy_implementation_address {\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 }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n implementation_address: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\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 }\n}", + "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo": "namespace Proxy_implementation_address {\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 = 1662968741416162122709795668327058413808168082301235317239158738933362048792;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n implementation_address: felt\n ) {\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 }\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 }\n}" + }, + "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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/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": 40, + "end_line": 5, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 5 + } + }, + "3": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 90, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 90 + } + }, + "5": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "6": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "7": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "8": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "9": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "10": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 96, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 96 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 99, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 100 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 99 + } + }, + "12": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 26, + "start_line": 100 + } + }, + "13": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 57, + "start_line": 100 + } + }, + "14": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 100, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 100 + } + }, + "15": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 112, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 112 + } + }, + "17": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "18": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "19": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "20": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "21": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 117, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "22": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 98, + "end_line": 118, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 118 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 121, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 107 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 121 + } + }, + "24": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 26, + "start_line": 122 + } + }, + "25": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 57, + "start_line": 122 + } + }, + "26": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 122, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 122 + } + }, + "27": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 58, + "start_line": 354 + } + }, + "29": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "30": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "31": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 355, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 355 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 357, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 357 + } + }, + "33": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 19, + "start_line": 358 + } + }, + "34": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "35": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 372, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 372 + } + }, + "37": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "38": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "39": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "40": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 374, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 374 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 375 + } + }, + "42": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + } + }, + "43": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 392, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 392 + } + }, + "45": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "46": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "47": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "48": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "49": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "50": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 85, + "end_line": 394, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 394 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 395 + } + }, + "52": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + } + }, + "53": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "55": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "57": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "58": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "60": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "61": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "63": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "64": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 15, + "start_line": 15 + }, + "While handling calldata argument 'implementation'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "65": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While handling calldata argument 'implementation'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "67": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "68": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "70": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "71": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "72": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "73": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "75": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "76": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Upgraded", + "lib.openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "77": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/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 + } + }, + "78": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "79": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "81": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "82": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "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": 35, + "start_line": 12 + } + }, + "83": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "84": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "86": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "87": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "88": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "90": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "91": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "92": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "93": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "94": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "95": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "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": 25 + } + }, + "96": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "97": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "99": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "100": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "101": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "102": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "104": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "105": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "106": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address", + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "107": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "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": 30, + "start_line": 60 + } + }, + "108": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 60 + } + }, + "109": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 60 + } + }, + "110": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 61, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 44, + "start_line": 63 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "111": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 63 + } + }, + "113": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 64 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 63 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "114": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 64 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 63 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "115": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 61, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 64 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "116": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 64 + } + }, + "118": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 64 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "119": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 63 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "120": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 15, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 64, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 64 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "121": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy._set_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 65, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 65 + } + }, + "122": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 86, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 32, + "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": 29, + "start_line": 83 + } + }, + "123": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 86, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 32, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 83 + } + }, + "124": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 86, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 32, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 83 + } + }, + "125": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 86, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 32, + "start_line": 86 + } + }, + "127": { + "accessible_scopes": [ + "lib.openzeppelin.upgrades.library", + "lib.openzeppelin.upgrades.library.Proxy", + "lib.openzeppelin.upgrades.library.Proxy.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 87, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 87 + } + }, + "128": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 18, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 15 + } + }, + "129": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 18, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 15 + } + }, + "130": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 18, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 15 + } + }, + "131": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 18, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'implementation_address' in:" + ], + "start_col": 5, + "start_line": 16 + } + }, + "132": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 18, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "134": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 18, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 25, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 60 + } + }, + "135": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 21, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'implementation_address' in:" + ], + "start_col": 5, + "start_line": 16 + } + }, + "136": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 22, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 27, + "start_line": 22 + }, + "While expanding the reference 'initializer_selector' in:" + ], + "start_col": 35, + "start_line": 16 + } + }, + "137": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 23, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 23, + "start_line": 23 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 63, + "start_line": 16 + } + }, + "138": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 18, + "start_line": 24 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 83, + "start_line": 16 + } + }, + "139": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 25, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 20 + } + }, + "141": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 25, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 26, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 20 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + } + }, + "142": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 18, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 26, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 60 + } + }, + "143": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 60, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 18, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 26, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 60 + } + }, + "144": { + "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 26, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 26 + } + }, + "145": { + "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/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 83, + "start_line": 16 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "146": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 83, + "start_line": 16 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 63, + "start_line": 16 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "147": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 83, + "start_line": 16 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "148": { + "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/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 83, + "start_line": 16 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 63, + "start_line": 16 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "150": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 83, + "start_line": 16 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 63, + "start_line": 16 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "151": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 83, + "start_line": 16 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "152": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "153": { + "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/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 83, + "start_line": 16 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "154": { + "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/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "155": { + "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/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "156": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 83, + "start_line": 16 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "158": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e873b36f70ba086858da6461bd90d871fa83ad20a246f708b0b2e900747d6cbd.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 177, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 140, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_implementation_address' in:" + ], + "start_col": 5, + "start_line": 16 + }, + "While handling calldata argument 'implementation_address'" + ], + "start_col": 45, + "start_line": 1 + } + }, + "159": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/eab2f02bb7ddd7dc10d7bea0d0d4bf773a1eb3b40ca36fd52031f4d2a9a62001.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 235, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 200, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_initializer_selector' in:" + ], + "start_col": 35, + "start_line": 16 + }, + "While handling calldata argument 'initializer_selector'" + ], + "start_col": 43, + "start_line": 1 + } + }, + "160": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 277, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 250, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 63, + "start_line": 16 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "161": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 16, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 311, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 288, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_calldata' in:" + ], + "start_col": 83, + "start_line": 16 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 31, + "start_line": 5 + } + }, + "163": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + } + }, + "165": { + "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/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "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/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "167": { + "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/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "168": { + "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/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "169": { + "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/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "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": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "170": { + "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/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "172": { + "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/8f6589d2c5454282ff321b7f6e36bc45586f7a4464548dddb9346ea352fdcc1a.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "173": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 15, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "174": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 37, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 18, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 83 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 34 + } + }, + "175": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 37, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 18, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 83 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 34 + } + }, + "176": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 37, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 18, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 83 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 34 + } + }, + "177": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 37, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 18, + "start_line": 37 + } + }, + "179": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 38, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 38 + } + }, + "180": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation/5da449dc9e9ebb91941e4a80a9ca5fd51b75728d6e6233ae526d699d10017fa5.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation/5da449dc9e9ebb91941e4a80a9ca5fd51b75728d6e6233ae526d699d10017fa5.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "182": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8c21749e672c27d9a3ed2818f2aa8cf012801db97d111d79a1a0436aa0e9255d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 35, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 35 + }, + "While handling return value 'implementation'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "183": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8c21749e672c27d9a3ed2818f2aa8cf012801db97d111d79a1a0436aa0e9255d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 35, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation/5da449dc9e9ebb91941e4a80a9ca5fd51b75728d6e6233ae526d699d10017fa5.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 35 + }, + "While handling return value 'implementation'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "185": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation/5da449dc9e9ebb91941e4a80a9ca5fd51b75728d6e6233ae526d699d10017fa5.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation/5da449dc9e9ebb91941e4a80a9ca5fd51b75728d6e6233ae526d699d10017fa5.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 74, + "start_line": 1 + } + }, + "186": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation/5da449dc9e9ebb91941e4a80a9ca5fd51b75728d6e6233ae526d699d10017fa5.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "187": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation/5da449dc9e9ebb91941e4a80a9ca5fd51b75728d6e6233ae526d699d10017fa5.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation/5da449dc9e9ebb91941e4a80a9ca5fd51b75728d6e6233ae526d699d10017fa5.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "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": 34 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "188": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation/5da449dc9e9ebb91941e4a80a9ca5fd51b75728d6e6233ae526d699d10017fa5.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "189": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "190": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "191": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "192": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "193": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + } + }, + "195": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "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": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "196": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 108, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "198": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "199": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "200": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "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": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "201": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "202": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/055fe4c3b8e656b462cf0c5e45f30b19574d2fa859dafc5cd086359439759400.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "203": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "204": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 51, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 21, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 83 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 48 + } + }, + "205": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 51, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 21, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 83 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 48 + } + }, + "206": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 51, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 21, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 83 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 48 + } + }, + "207": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 51, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 21, + "start_line": 51 + } + }, + "209": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 51, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 58, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 48, + "start_line": 53 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 51 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 83 + } + }, + "210": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 51, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 54, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 20, + "start_line": 54 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 10, + "start_line": 51 + } + }, + "211": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 55, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 27, + "start_line": 55 + }, + "While expanding the reference 'selector' in:" + ], + "start_col": 5, + "start_line": 49 + } + }, + "212": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 49, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 56, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 23, + "start_line": 56 + }, + "While expanding the reference 'calldata_size' in:" + ], + "start_col": 21, + "start_line": 49 + } + }, + "213": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 49, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 57, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 18, + "start_line": 57 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 42, + "start_line": 49 + } + }, + "214": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 58, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 48, + "start_line": 53 + } + }, + "216": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 58, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 60, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 60 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 48 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 48, + "start_line": 53 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + } + }, + "217": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 51, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 60, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 60 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 48 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 51 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 83 + } + }, + "218": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 51, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 60, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 60 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 48 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 51 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 83 + } + }, + "219": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 53, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 60, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 26, + "start_line": 60 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 10, + "start_line": 53 + } + }, + "220": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 53, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 60, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 48, + "start_line": 60 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 30, + "start_line": 53 + } + }, + "221": { + "accessible_scopes": ["__main__", "__main__", "__main__.__default__"], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 60, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 60 + } + }, + "222": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "223": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "224": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "225": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 150, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + } + }, + "226": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 190, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 166, + "start_line": 1 + } + }, + "227": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 226, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 201, + "start_line": 1 + } + }, + "228": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 48 + } + }, + "230": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "231": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 68, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 21, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 83 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 65 + } + }, + "232": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 68, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 21, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 83 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 65 + } + }, + "233": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 68, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 21, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 83 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 65 + } + }, + "234": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 68, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 21, + "start_line": 68 + } + }, + "236": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 68, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 75, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 70 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 107 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 68 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 83 + } + }, + "237": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 68, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 71, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 20, + "start_line": 71 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 10, + "start_line": 68 + } + }, + "238": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 66, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 72, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 27, + "start_line": 72 + }, + "While expanding the reference 'selector' in:" + ], + "start_col": 5, + "start_line": 66 + } + }, + "239": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 66, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 73, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 23, + "start_line": 73 + }, + "While expanding the reference 'calldata_size' in:" + ], + "start_col": 21, + "start_line": 66 + } + }, + "240": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 66, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 74, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 18, + "start_line": 74 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 42, + "start_line": 66 + } + }, + "241": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 75, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 70 + } + }, + "243": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 107, + "input_file": { + "filename": "/Users/apoorvsadana/.pyenv/versions/3.9.16/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 75, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 77, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 77 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 65 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 70 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 107 + } + }, + "244": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 68, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 77, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 77 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 65 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 68 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 83 + } + }, + "245": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 83, + "input_file": { + "filename": "/Users/apoorvsadana/Documents/GitHub/braavos-account-cairo/lib/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 68, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 77, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 77 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 65 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 68 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 83 + } + }, + "246": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 77, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 5, + "start_line": 77 + } + }, + "247": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.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": 21, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "248": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.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": 41, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "249": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.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": 69, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "250": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 150, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + } + }, + "251": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 190, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 166, + "start_line": 1 + } + }, + "252": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 226, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 201, + "start_line": 1 + } + }, + "253": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + } + }, + "255": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.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/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "257": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.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 + } + }, + "258": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.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 + } + }, + "259": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.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 + } + }, + "260": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "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 + } + }, + "262": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "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 + } + }, + "263": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "lib/openzeppelin/upgrades/Proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "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": {} + } + } + ], + "10": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "code": "syscall_handler.library_call(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 1, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.library_call.syscall_ptr": 0 + } + } + } + ], + "22": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "code": "syscall_handler.library_call_l1_handler(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 2, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.library_call_l1_handler.syscall_ptr": 1 + } + } + } + ], + "31": [ + { + "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": 3, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 2 + } + } + } + ], + "40": [ + { + "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": 4, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 3 + } + } + } + ], + "50": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "code": "syscall_handler.emit_event(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 5, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.emit_event.syscall_ptr": 4 + } + } + } + ], + "165": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 13, + "offset": 85 + }, + "reference_ids": {} + } + } + ], + "180": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 15, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "255": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 20, + "offset": 50 + }, + "reference_ids": {} + } + } + ] + }, + "identifiers": { + "__main__.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "__main__.Proxy": { + "destination": "lib.openzeppelin.upgrades.library.Proxy", + "type": "alias" + }, + "__main__.__default__": { + "decorators": ["external", "raw_input", "raw_output"], + "pc": 204, + "type": "function" + }, + "__main__.__default__.Args": { + "full_name": "__main__.__default__.Args", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 2 + }, + "calldata_size": { + "cairo_type": "felt", + "offset": 1 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.__default__.ImplicitArgs": { + "full_name": "__main__.__default__.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__.__default__.Return": { + "cairo_type": "(retdata_size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__main__.__default__.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.__l1_default__": { + "decorators": ["l1_handler", "raw_input"], + "pc": 231, + "type": "function" + }, + "__main__.__l1_default__.Args": { + "full_name": "__main__.__l1_default__.Args", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 2 + }, + "calldata_size": { + "cairo_type": "felt", + "offset": 1 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.__l1_default__.ImplicitArgs": { + "full_name": "__main__.__l1_default__.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__.__l1_default__.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.__l1_default__.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.constructor": { + "decorators": ["constructor"], + "pc": 128, + "type": "function" + }, + "__main__.constructor.Args": { + "full_name": "__main__.constructor.Args", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 3 + }, + "calldata_len": { + "cairo_type": "felt", + "offset": 2 + }, + "implementation_address": { + "cairo_type": "felt", + "offset": 0 + }, + "initializer_selector": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 4, + "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_implementation": { + "decorators": ["view"], + "pc": 174, + "type": "function" + }, + "__main__.get_implementation.Args": { + "full_name": "__main__.get_implementation.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.get_implementation.ImplicitArgs": { + "full_name": "__main__.get_implementation.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_implementation.Return": { + "cairo_type": "(implementation: felt)", + "type": "type_definition" + }, + "__main__.get_implementation.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.library_call": { + "destination": "starkware.starknet.common.syscalls.library_call", + "type": "alias" + }, + "__main__.library_call_l1_handler": { + "destination": "starkware.starknet.common.syscalls.library_call_l1_handler", + "type": "alias" + }, + "__wrappers__.__default__": { + "decorators": ["external", "raw_input", "raw_output"], + "pc": 222, + "type": "function" + }, + "__wrappers__.__default__.Args": { + "full_name": "__wrappers__.__default__.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.__default__.ImplicitArgs": { + "full_name": "__wrappers__.__default__.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.__default__.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.__default__.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.__default__.__wrapped_func": { + "destination": "__main__.__default__", + "type": "alias" + }, + "__wrappers__.__default___encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.__l1_default__": { + "decorators": ["l1_handler", "raw_input"], + "pc": 247, + "type": "function" + }, + "__wrappers__.__l1_default__.Args": { + "full_name": "__wrappers__.__l1_default__.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.__l1_default__.ImplicitArgs": { + "full_name": "__wrappers__.__l1_default__.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.__l1_default__.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.__l1_default__.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.__l1_default__.__wrapped_func": { + "destination": "__main__.__l1_default__", + "type": "alias" + }, + "__wrappers__.__l1_default___encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.constructor": { + "decorators": ["constructor"], + "pc": 145, + "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, 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_implementation": { + "decorators": ["view"], + "pc": 189, + "type": "function" + }, + "__wrappers__.get_implementation.Args": { + "full_name": "__wrappers__.get_implementation.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_implementation.ImplicitArgs": { + "full_name": "__wrappers__.get_implementation.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_implementation.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_implementation.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.get_implementation.__wrapped_func": { + "destination": "__main__.get_implementation", + "type": "alias" + }, + "__wrappers__.get_implementation_encode_return": { + "decorators": [], + "pc": 180, + "type": "function" + }, + "__wrappers__.get_implementation_encode_return.Args": { + "full_name": "__wrappers__.get_implementation_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(implementation: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.get_implementation_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.get_implementation_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_implementation_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_implementation_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.get_implementation_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation": { + "decorators": [], + "pc": 107, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy._set_implementation.Args", + "members": { + "new_implementation": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy._set_implementation.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" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy._set_implementation.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy.get_implementation": { + "decorators": [], + "pc": 122, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy.get_implementation.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.get_implementation.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy.get_implementation.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy.get_implementation.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" + }, + "lib.openzeppelin.upgrades.library.Proxy.get_implementation.Return": { + "cairo_type": "(implementation: felt)", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy.get_implementation.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_admin": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_admin.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_admin.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr": { + "decorators": [], + "pc": 77, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.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" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read": { + "decorators": [], + "pc": 82, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.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" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read.Return": { + "cairo_type": "(implementation_address: felt)", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write": { + "decorators": [], + "pc": 95, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_implementation_address.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" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_implementation_address.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_initialized.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Proxy_initialized.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Proxy_initialized.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Upgraded": { + "type": "namespace" + }, + "lib.openzeppelin.upgrades.library.Upgraded.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Upgraded.SELECTOR": { + "type": "const", + "value": 1291924484015741933195105472014600539495279993452337828418116470835452386035 + }, + "lib.openzeppelin.upgrades.library.Upgraded.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "lib.openzeppelin.upgrades.library.Upgraded.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit": { + "decorators": [], + "pc": 53, + "type": "function" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.Args": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.emit.Args", + "members": { + "implementation": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.ImplicitArgs": { + "full_name": "lib.openzeppelin.upgrades.library.Upgraded.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "lib.openzeppelin.upgrades.library.Upgraded.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.Upgraded.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "lib.openzeppelin.upgrades.library.get_caller_address": { + "destination": "starkware.starknet.common.syscalls.get_caller_address", + "type": "alias" + }, + "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.KeccakBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", + "members": { + "input": { + "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "offset": 0 + }, + "output": { + "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "offset": 8 + } + }, + "size": 16, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { + "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "type": "alias" + }, + "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.keccak_state.KeccakBuiltinState": { + "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "members": { + "s0": { + "cairo_type": "felt", + "offset": 0 + }, + "s1": { + "cairo_type": "felt", + "offset": 1 + }, + "s2": { + "cairo_type": "felt", + "offset": 2 + }, + "s3": { + "cairo_type": "felt", + "offset": 3 + }, + "s4": { + "cairo_type": "felt", + "offset": 4 + }, + "s5": { + "cairo_type": "felt", + "offset": 5 + }, + "s6": { + "cairo_type": "felt", + "offset": 6 + }, + "s7": { + "cairo_type": "felt", + "offset": 7 + } + }, + "size": 8, + "type": "struct" + }, + "starkware.cairo.common.math.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "starkware.cairo.common.math.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "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.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 + }, + "deploy_from_zero": { + "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 + }, + "nonce": { + "cairo_type": "felt", + "offset": 7 + }, + "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": 8, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event": { + "decorators": [], + "pc": 43, + "type": "function" + }, + "starkware.starknet.common.syscalls.emit_event.Args": { + "full_name": "starkware.starknet.common.syscalls.emit_event.Args", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 3 + }, + "data_len": { + "cairo_type": "felt", + "offset": 2 + }, + "keys": { + "cairo_type": "felt*", + "offset": 1 + }, + "keys_len": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.emit_event.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.emit_event.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.emit_event.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.emit_event.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 5, + "offset": 0 + }, + "pc": 43, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 5, + "offset": 1 + }, + "pc": 50, + "value": "cast([fp + (-7)] + 5, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.library_call": { + "decorators": [], + "pc": 3, + "type": "function" + }, + "starkware.starknet.common.syscalls.library_call.Args": { + "full_name": "starkware.starknet.common.syscalls.library_call.Args", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 3 + }, + "calldata_size": { + "cairo_type": "felt", + "offset": 2 + }, + "class_hash": { + "cairo_type": "felt", + "offset": 0 + }, + "function_selector": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.library_call.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.library_call.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.library_call.Return": { + "cairo_type": "(retdata_size: felt, retdata: felt*)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.library_call.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.library_call.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.library_call.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 1, + "offset": 0 + }, + "pc": 3, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 1, + "offset": 1 + }, + "pc": 10, + "value": "cast([fp + (-7)] + 7, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.library_call_l1_handler": { + "decorators": [], + "pc": 15, + "type": "function" + }, + "starkware.starknet.common.syscalls.library_call_l1_handler.Args": { + "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.Args", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 3 + }, + "calldata_size": { + "cairo_type": "felt", + "offset": 2 + }, + "class_hash": { + "cairo_type": "felt", + "offset": 0 + }, + "function_selector": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.library_call_l1_handler.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.library_call_l1_handler.Return": { + "cairo_type": "(retdata_size: felt, retdata: felt*)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.library_call_l1_handler.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.library_call_l1_handler.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 2, + "offset": 0 + }, + "pc": 15, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 2, + "offset": 1 + }, + "pc": 22, + "value": "cast([fp + (-7)] + 7, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.storage_read": { + "decorators": [], + "pc": 27, + "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": 3, + "offset": 0 + }, + "pc": 27, + "value": "[cast(fp + (-4), felt**)]" + }, + { + "ap_tracking_data": { + "group": 3, + "offset": 1 + }, + "pc": 31, + "value": "cast([fp + (-4)] + 3, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.storage_write": { + "decorators": [], + "pc": 35, + "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": 4, + "offset": 0 + }, + "pc": 35, + "value": "[cast(fp + (-5), felt**)]" + }, + { + "ap_tracking_data": { + "group": 4, + "offset": 1 + }, + "pc": 40, + "value": "cast([fp + (-5)] + 3, felt*)" + } + ], + "type": "reference" + } + }, + "main_scope": "__main__", + "prime": "0x800000000000011000000000000000000000000000000000000000000000001", + "reference_manager": { + "references": [ + { + "ap_tracking_data": { + "group": 1, + "offset": 0 + }, + "pc": 3, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 2, + "offset": 0 + }, + "pc": 15, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 3, + "offset": 0 + }, + "pc": 27, + "value": "[cast(fp + (-4), felt**)]" + }, + { + "ap_tracking_data": { + "group": 4, + "offset": 0 + }, + "pc": 35, + "value": "[cast(fp + (-5), felt**)]" + }, + { + "ap_tracking_data": { + "group": 5, + "offset": 0 + }, + "pc": 43, + "value": "[cast(fp + (-7), felt**)]" + } + ] + } + } +} diff --git a/configs/genesis-assets/OpenZeppelinAccountCairoOne.casm.json b/configs/genesis-assets/OpenZeppelinAccountCairoOne.casm.json new file mode 100644 index 0000000000..f0a86e71a4 --- /dev/null +++ b/configs/genesis-assets/OpenZeppelinAccountCairoOne.casm.json @@ -0,0 +1,5577 @@ +{ + "prime": "0x800000000000011000000000000000000000000000000000000000000000001", + "compiler_version": "2.2.0", + "bytecode": [ + "0x40780017fff7fff", + "0x1", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xffffffffffffffffffffffffffff6a14", + "0x400280007ff97fff", + "0x10780017fff7fff", + "0x8a", + "0x4825800180007ffa", + "0x95ec", + "0x400280007ff97fff", + "0x482680017ff98000", + "0x1", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x751", + "0x20680017fff7ffa", + "0x76", + "0x20680017fff7ffd", + "0x66", + "0x48307ffb80007ffc", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x10", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x1280", + "0x482480017fff8000", + "0x127f", + "0x480080007fff8000", + "0xa0680017fff8000", + "0x9", + "0x4824800180007ff2", + "0x0", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007fef7fff", + "0x10780017fff7fff", + "0x34", + "0x4824800180007ff2", + "0x0", + "0x400080007ff07fff", + "0x482480017ff08000", + "0x1", + "0x48127ffe7fff8000", + "0x480a7ffb7fff8000", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x1104800180018000", + "0x767", + "0x40137ffc7fff8000", + "0x20680017fff7ffd", + "0x1e", + "0x40780017fff7fff", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x7bd", + "0x20680017fff7ffd", + "0xa", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a80007fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a80007fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x480a80007fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482480017fed8000", + "0x1", + "0x48127fed7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x400080007ffe7fff", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff98000", + "0x1", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xfffffffffffffffffffffffffffefe3a", + "0x400280007ff87fff", + "0x10780017fff7fff", + "0x84", + "0x4825800180007ffa", + "0x101c6", + "0x400280007ff87fff", + "0x482680017ff88000", + "0x1", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x6b3", + "0x20680017fff7ffa", + "0x6f", + "0x20680017fff7ffd", + "0x5e", + "0x48307ffb80007ffc", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x11", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x48127ff47fff8000", + "0x480a7ff97fff8000", + "0x48127ff37fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x11e1", + "0x482480017fff8000", + "0x11e0", + "0x480080007fff8000", + "0x480080027fff8000", + "0x484480017fff8000", + "0x3", + "0x482480017fff8000", + "0x0", + "0xa0680017fff8000", + "0x8", + "0x48307ffe80007fef", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007fec7fff", + "0x10780017fff7fff", + "0x26", + "0x48307ffe80007fef", + "0x400080007fed7fff", + "0x482480017fed8000", + "0x1", + "0x480a7ff97fff8000", + "0x48127ffd7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x748", + "0x20680017fff7ffd", + "0x12", + "0x40780017fff7fff", + "0x1", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x784", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482480017fea8000", + "0x1", + "0x480a7ff97fff8000", + "0x48127fe97fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x400080007ffe7fff", + "0x48127ff67fff8000", + "0x480a7ff97fff8000", + "0x48127ff57fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x480a7ff97fff8000", + "0x48127ff77fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff88000", + "0x1", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xffffffffffffffffffffffffffff2ac2", + "0x400280007ff87fff", + "0x10780017fff7fff", + "0x9e", + "0x4825800180007ffa", + "0xd53e", + "0x400280007ff87fff", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x72f", + "0x482680017ff88000", + "0x1", + "0x20680017fff7ffd", + "0x84", + "0x48127fff7fff8000", + "0x48127fee7fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x40137ffa7fff8000", + "0x1104800180018000", + "0x748", + "0x20680017fff7ffa", + "0x72", + "0x20680017fff7ffd", + "0x61", + "0x48307ffb80007ffc", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x11", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x48127ff47fff8000", + "0x480a7ff97fff8000", + "0x48127ff37fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x113e", + "0x482480017fff8000", + "0x113d", + "0x480080007fff8000", + "0x480080027fff8000", + "0x484480017fff8000", + "0x3", + "0x482480017fff8000", + "0x0", + "0xa0680017fff8000", + "0x8", + "0x48307ffe80007fef", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007fec7fff", + "0x10780017fff7fff", + "0x29", + "0x48307ffe80007fef", + "0x400080007fed7fff", + "0x482480017fed8000", + "0x1", + "0x480a7ff97fff8000", + "0x48127ffd7fff8000", + "0x480a7ffb7fff8000", + "0x480a80007fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x1104800180018000", + "0x758", + "0x20680017fff7ffd", + "0x12", + "0x40780017fff7fff", + "0x1", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x6de", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482480017fea8000", + "0x1", + "0x480a7ff97fff8000", + "0x48127fe97fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202332", + "0x400080007ffe7fff", + "0x48127ff67fff8000", + "0x480a7ff97fff8000", + "0x48127ff57fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x480a7ff97fff8000", + "0x48127ff77fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x400080007ffe7fff", + "0x48127ffd7fff8000", + "0x480a7ff97fff8000", + "0x48127feb7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff88000", + "0x1", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xffffffffffffffffffffffffffff2ac2", + "0x400280007ff87fff", + "0x10780017fff7fff", + "0x9e", + "0x4825800180007ffa", + "0xd53e", + "0x400280007ff87fff", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x67a", + "0x482680017ff88000", + "0x1", + "0x20680017fff7ffd", + "0x84", + "0x48127fff7fff8000", + "0x48127fee7fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x40137ffa7fff8000", + "0x1104800180018000", + "0x693", + "0x20680017fff7ffa", + "0x72", + "0x20680017fff7ffd", + "0x61", + "0x48307ffb80007ffc", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x11", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x48127ff47fff8000", + "0x480a7ff97fff8000", + "0x48127ff37fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x1089", + "0x482480017fff8000", + "0x1088", + "0x480080007fff8000", + "0x480080027fff8000", + "0x484480017fff8000", + "0x3", + "0x482480017fff8000", + "0x0", + "0xa0680017fff8000", + "0x8", + "0x48307ffe80007fef", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007fec7fff", + "0x10780017fff7fff", + "0x29", + "0x48307ffe80007fef", + "0x400080007fed7fff", + "0x482480017fed8000", + "0x1", + "0x480a7ff97fff8000", + "0x48127ffd7fff8000", + "0x480a7ffb7fff8000", + "0x480a80007fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x1104800180018000", + "0x6a3", + "0x20680017fff7ffd", + "0x12", + "0x40780017fff7fff", + "0x1", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x629", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482480017fea8000", + "0x1", + "0x480a7ff97fff8000", + "0x48127fe97fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202332", + "0x400080007ffe7fff", + "0x48127ff67fff8000", + "0x480a7ff97fff8000", + "0x48127ff57fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x480a7ff97fff8000", + "0x48127ff77fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x400080007ffe7fff", + "0x48127ffd7fff8000", + "0x480a7ff97fff8000", + "0x48127feb7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff88000", + "0x1", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xffffffffffffffffffffffffffff0cf4", + "0x400280007ff87fff", + "0x10780017fff7fff", + "0x78", + "0x4825800180007ffa", + "0xf30c", + "0x400280007ff87fff", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x5c7", + "0x482680017ff88000", + "0x1", + "0x20680017fff7ffd", + "0x5e", + "0x48307ffb80007ffc", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x11", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x48127ffb7fff8000", + "0x480a7ff97fff8000", + "0x48127fe97fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0xfe1", + "0x482480017fff8000", + "0xfe0", + "0x480080007fff8000", + "0x480080027fff8000", + "0x484480017fff8000", + "0x3", + "0x482480017fff8000", + "0x0", + "0xa0680017fff8000", + "0x8", + "0x48307ffe80007fe5", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007ff37fff", + "0x10780017fff7fff", + "0x26", + "0x48307ffe80007fe5", + "0x400080007ff47fff", + "0x482480017ff48000", + "0x1", + "0x480a7ff97fff8000", + "0x48127ffd7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x548", + "0x20680017fff7ffd", + "0x12", + "0x40780017fff7fff", + "0x1", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x584", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482480017ff18000", + "0x1", + "0x480a7ff97fff8000", + "0x48127fdf7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x400080007ffe7fff", + "0x48127ffd7fff8000", + "0x480a7ff97fff8000", + "0x48127feb7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff88000", + "0x1", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xffffffffffffffffffffffffffffbef6", + "0x400280007ff97fff", + "0x10780017fff7fff", + "0x77", + "0x4825800180007ffa", + "0x410a", + "0x400280007ff97fff", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x53a", + "0x482680017ff98000", + "0x1", + "0x20680017fff7ffd", + "0x5d", + "0x48307ffb80007ffc", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x11", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x48127ffa7fff8000", + "0x48127fe97fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0xf54", + "0x482480017fff8000", + "0xf53", + "0x480080007fff8000", + "0x480080007fff8000", + "0x482480017fff8000", + "0x0", + "0xa0680017fff8000", + "0x8", + "0x48307ffe80007fe6", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007ff47fff", + "0x10780017fff7fff", + "0x27", + "0x48307ffe80007fe6", + "0x400080007ff57fff", + "0x482480017ff58000", + "0x1", + "0x48127ffe7fff8000", + "0x480a7ff87fff8000", + "0x480a7ffb7fff8000", + "0x48127ff07fff8000", + "0x1104800180018000", + "0x59a", + "0x20680017fff7ffd", + "0x12", + "0x40780017fff7fff", + "0x1", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x5ad", + "0x48127fec7fff8000", + "0x48127fe97fff8000", + "0x48127fe97fff8000", + "0x48127fea7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x482480017ff18000", + "0x1", + "0x48127fe07fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x48127ffc7fff8000", + "0x48127feb7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x482680017ff98000", + "0x1", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xffffffffffffffffffffffffffffbef6", + "0x400280007ff97fff", + "0x10780017fff7fff", + "0x77", + "0x4825800180007ffa", + "0x410a", + "0x400280007ff97fff", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x4ae", + "0x482680017ff98000", + "0x1", + "0x20680017fff7ffd", + "0x5d", + "0x48307ffb80007ffc", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x11", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x48127ffa7fff8000", + "0x48127fe97fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0xec8", + "0x482480017fff8000", + "0xec7", + "0x480080007fff8000", + "0x480080007fff8000", + "0x482480017fff8000", + "0x0", + "0xa0680017fff8000", + "0x8", + "0x48307ffe80007fe6", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007ff47fff", + "0x10780017fff7fff", + "0x27", + "0x48307ffe80007fe6", + "0x400080007ff57fff", + "0x482480017ff58000", + "0x1", + "0x48127ffe7fff8000", + "0x480a7ff87fff8000", + "0x480a7ffb7fff8000", + "0x48127ff07fff8000", + "0x1104800180018000", + "0x539", + "0x20680017fff7ffd", + "0x12", + "0x40780017fff7fff", + "0x1", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x521", + "0x48127fec7fff8000", + "0x48127fe97fff8000", + "0x48127fe97fff8000", + "0x48127fea7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x482480017ff18000", + "0x1", + "0x48127fe07fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x48127ffc7fff8000", + "0x48127feb7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x482680017ff98000", + "0x1", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xffffffffffffffffffffffffffffe2f0", + "0x400280007ff97fff", + "0x10780017fff7fff", + "0x5b", + "0x4825800180007ffa", + "0x1d10", + "0x400280007ff97fff", + "0x48297ffc80007ffd", + "0x482680017ff98000", + "0x1", + "0x4824800180007ffe", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x10", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x48127ffc7fff8000", + "0x48127ff97fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0xe43", + "0x482480017fff8000", + "0xe42", + "0x480080007fff8000", + "0xa0680017fff8000", + "0x9", + "0x4824800180007ff7", + "0x0", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007ff77fff", + "0x10780017fff7fff", + "0x24", + "0x4824800180007ff7", + "0x0", + "0x400080007ff87fff", + "0x48127fff7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x4d5", + "0x482480017fd88000", + "0x1", + "0x20680017fff7ffc", + "0x11", + "0x40780017fff7fff", + "0x1", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x3ea", + "0x48127ff77fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x48127fff7fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482480017ff58000", + "0x1", + "0x48127ff27fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff98000", + "0x1", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xfffffffffffffffffffffffffffea818", + "0x400280007ff97fff", + "0x10780017fff7fff", + "0x6b", + "0x4825800180007ffa", + "0x157e8", + "0x400280007ff97fff", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x3b3", + "0x482680017ff98000", + "0x1", + "0x20680017fff7ffd", + "0x52", + "0x48307ffb80007ffc", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x10", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x48127ffb7fff8000", + "0x48127fea7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0xdce", + "0x482480017fff8000", + "0xdcd", + "0x480080007fff8000", + "0xa0680017fff8000", + "0x9", + "0x4824800180007fe8", + "0x0", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007ff67fff", + "0x10780017fff7fff", + "0x20", + "0x4824800180007fe8", + "0x0", + "0x400080007ff77fff", + "0x48127fff7fff8000", + "0x480a7ffb7fff8000", + "0x48127ff47fff8000", + "0x1104800180018000", + "0x474", + "0x482480017eec8000", + "0x1", + "0x20680017fff7ffc", + "0xc", + "0x40780017fff7fff", + "0x1", + "0x48127ffe7fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x48127fff7fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482480017ff48000", + "0x1", + "0x48127fe37fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x400080007ffe7fff", + "0x48127ffd7fff8000", + "0x48127fec7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff98000", + "0x1", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xffffffffffffffffffffffffffffe2f0", + "0x400280007ff97fff", + "0x10780017fff7fff", + "0x5b", + "0x4825800180007ffa", + "0x1d10", + "0x400280007ff97fff", + "0x48297ffc80007ffd", + "0x482680017ff98000", + "0x1", + "0x4824800180007ffe", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x10", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x48127ffc7fff8000", + "0x48127ff97fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0xd55", + "0x482480017fff8000", + "0xd54", + "0x480080007fff8000", + "0xa0680017fff8000", + "0x9", + "0x4824800180007ff7", + "0x0", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007ff77fff", + "0x10780017fff7fff", + "0x24", + "0x4824800180007ff7", + "0x0", + "0x400080007ff87fff", + "0x48127fff7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x441", + "0x482480017fd88000", + "0x1", + "0x20680017fff7ffc", + "0x11", + "0x40780017fff7fff", + "0x1", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x2fc", + "0x48127ff77fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x48127fff7fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482480017ff58000", + "0x1", + "0x48127ff27fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff98000", + "0x1", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xfffffffffffffffffffffffffffea3cc", + "0x400280007ff97fff", + "0x10780017fff7fff", + "0x6b", + "0x4825800180007ffa", + "0x15c34", + "0x400280007ff97fff", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x2c5", + "0x482680017ff98000", + "0x1", + "0x20680017fff7ffd", + "0x52", + "0x48307ffb80007ffc", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x10", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x48127ffb7fff8000", + "0x48127fea7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0xce0", + "0x482480017fff8000", + "0xcdf", + "0x480080007fff8000", + "0xa0680017fff8000", + "0x9", + "0x4824800180007fe8", + "0x0", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007ff67fff", + "0x10780017fff7fff", + "0x20", + "0x4824800180007fe8", + "0x0", + "0x400080007ff77fff", + "0x48127fff7fff8000", + "0x480a7ffb7fff8000", + "0x48127ff47fff8000", + "0x1104800180018000", + "0x3e0", + "0x482480017ee28000", + "0x1", + "0x20680017fff7ffc", + "0xc", + "0x40780017fff7fff", + "0x1", + "0x48127ffe7fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x48127fff7fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482480017ff48000", + "0x1", + "0x48127fe37fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x400080007ffe7fff", + "0x48127ffd7fff8000", + "0x48127fec7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff98000", + "0x1", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xfffffffffffffffffffffffffffefe1c", + "0x400280007ff87fff", + "0x10780017fff7fff", + "0xa2", + "0x4825800180007ffa", + "0x101e4", + "0x400280007ff87fff", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x246", + "0x482680017ff88000", + "0x1", + "0x20680017fff7ffd", + "0x88", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x23e", + "0x20680017fff7ffe", + "0x73", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x238", + "0x20680017fff7ffe", + "0x5e", + "0x48307ffc80007ffd", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x11", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x48127fdd7fff8000", + "0x480a7ff97fff8000", + "0x48127fcb7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0xc54", + "0x482480017fff8000", + "0xc53", + "0x480080007fff8000", + "0x480080027fff8000", + "0x484480017fff8000", + "0x3", + "0x482480017fff8000", + "0x0", + "0xa0680017fff8000", + "0x8", + "0x48307ffe80007fc7", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007fd57fff", + "0x10780017fff7fff", + "0x26", + "0x48307ffe80007fc7", + "0x400080007fd67fff", + "0x482480017fd68000", + "0x1", + "0x480a7ff97fff8000", + "0x48127ffd7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x1bb", + "0x20680017fff7ffd", + "0x12", + "0x40780017fff7fff", + "0x1", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x1f7", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x48127ff17fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482480017fd38000", + "0x1", + "0x480a7ff97fff8000", + "0x48127fc17fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202333", + "0x400080007ffe7fff", + "0x48127fdf7fff8000", + "0x480a7ff97fff8000", + "0x48127fcd7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202332", + "0x400080007ffe7fff", + "0x48127fee7fff8000", + "0x480a7ff97fff8000", + "0x48127fdc7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x400080007ffe7fff", + "0x48127ffd7fff8000", + "0x480a7ff97fff8000", + "0x48127feb7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff88000", + "0x1", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0x7", + "0x482680017ffa8000", + "0xffffffffffffffffffffffffffff44b2", + "0x400280007ff97fff", + "0x10780017fff7fff", + "0x72", + "0x4825800180007ffa", + "0xbb4e", + "0x400280007ff97fff", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x18f", + "0x482680017ff98000", + "0x1", + "0x20680017fff7ffd", + "0x58", + "0x48307ffb80007ffc", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x11", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x48127ffa7fff8000", + "0x48127fe97fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0xba9", + "0x482480017fff8000", + "0xba8", + "0x480080007fff8000", + "0x480080007fff8000", + "0x482480017fff8000", + "0x0", + "0xa0680017fff8000", + "0x8", + "0x48307ffe80007fe6", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400080007ff47fff", + "0x10780017fff7fff", + "0x22", + "0x48307ffe80007fe6", + "0x400080007ff57fff", + "0x482480017ff58000", + "0x1", + "0x48127ffe7fff8000", + "0x480a7ff87fff8000", + "0x480a7ffb7fff8000", + "0x48127ff07fff8000", + "0x1104800180018000", + "0x2bc", + "0x20680017fff7ffd", + "0xd", + "0x40780017fff7fff", + "0x1", + "0x48127ffa7fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x482480017ff18000", + "0x1", + "0x48127fe07fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x48127ffc7fff8000", + "0x48127feb7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x480a7ff87fff8000", + "0x482680017ff98000", + "0x1", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48297ffc80007ffd", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0xa", + "0x482680017ffc8000", + "0x1", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffc7fff8000", + "0x10780017fff7fff", + "0x8", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x20680017fff7ffc", + "0x26", + "0x40780017fff7fff", + "0x1", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffa7fff8000", + "0x480080007ff68000", + "0x1104800180018000", + "0x272", + "0x20680017fff7ffa", + "0xc", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x2c8", + "0x20680017fff7ffd", + "0x57", + "0x4824800180007fff", + "0x0", + "0x20680017fff7fff", + "0x45", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x2d3", + "0x20680017fff7ffd", + "0x37", + "0x480080007fff8000", + "0x4824800180007fff", + "0x1", + "0x480080007ffd8000", + "0x20680017fff7ffe", + "0x6", + "0x40780017fff7fff", + "0x1", + "0x10780017fff7fff", + "0x6", + "0x4824800180007fff", + "0x100000000000000000000000000000001", + "0x20680017fff7fff", + "0x1b", + "0x480a7ff97fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x2d1", + "0x20680017fff7ffd", + "0xa", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4163636f756e743a20696e76616c69642074782076657273696f6e", + "0x400080007ffe7fff", + "0x480a7ff97fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4163636f756e743a20696e76616c69642063616c6c6572", + "0x400080007ffe7fff", + "0x480a7ff97fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x482480017ff98000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x48297ffa80007ffb", + "0x4844800180007fff", + "0x2", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x2a9", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x2a9", + "0x20680017fff7ffd", + "0x9", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x25b", + "0x20680017fff7ffd", + "0x36", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480080057ffb8000", + "0x480080037ffa8000", + "0x480080047ff98000", + "0x1104800180018000", + "0x2f7", + "0x20680017fff7ffd", + "0x20", + "0x20680017fff7fff", + "0x11", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4163636f756e743a20696e76616c6964207369676e6174757265", + "0x400080007ffe7fff", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x482480017ff88000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x56414c4944", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x150", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ea97fff8000", + "0x48127ea97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ea97fff8000", + "0x48127ea97fff8000", + "0x208b7fff7fff7ffe", + "0x400380007ffd7ffb", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48297ffc80007ffd", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0xa", + "0x482680017ffc8000", + "0x1", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffc7fff8000", + "0x10780017fff7fff", + "0x8", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x20680017fff7ffc", + "0x8", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x480680017fff8000", + "0x0", + "0x480080007ffa8000", + "0x208b7fff7fff7ffe", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48297ffc80007ffd", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0xa", + "0x482680017ffc8000", + "0x1", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffc7fff8000", + "0x10780017fff7fff", + "0x8", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x20680017fff7ffc", + "0x26", + "0x40780017fff7fff", + "0x1", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffa7fff8000", + "0x480080007ff68000", + "0x1104800180018000", + "0x2d8", + "0x20680017fff7ffa", + "0xc", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x247", + "0x20680017fff7ffd", + "0x14", + "0x20680017fff7fff", + "0x6", + "0x480680017fff8000", + "0x0", + "0x10780017fff7fff", + "0x4", + "0x480680017fff8000", + "0x56414c4944", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x2ef", + "0x20680017fff7ffd", + "0xc", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffb", + "0x6", + "0x480680017fff8000", + "0x0", + "0x10780017fff7fff", + "0x4", + "0x480680017fff8000", + "0x1", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff42", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x2c4", + "0x20680017fff7ffd", + "0xc", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x2d8", + "0x20680017fff7ffd", + "0xa", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x2f4", + "0x20680017fff7ffd", + "0x38", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x2bd", + "0x20680017fff7ffd", + "0x29", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x320", + "0x20680017fff7ffd", + "0x19", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x35d", + "0x20680017fff7ffd", + "0xb", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x62", + "0x48127f997fff8000", + "0x48127f997fff8000", + "0x480680017fff8000", + "0x1", + "0x48127f997fff8000", + "0x48127f997fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0xa2", + "0x48127f597fff8000", + "0x48127f597fff8000", + "0x480680017fff8000", + "0x1", + "0x48127f597fff8000", + "0x48127f597fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0xb9", + "0x48127f427fff8000", + "0x48127f427fff8000", + "0x480680017fff8000", + "0x1", + "0x48127f427fff8000", + "0x48127f427fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x27e", + "0x20680017fff7ffd", + "0xa", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa4", + "0x20680017fff7ffd", + "0xb", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x324", + "0x20680017fff7ffd", + "0xd", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x8b8", + "0x482480017fff8000", + "0x8b7", + "0x480080007fff8000", + "0xa0680017fff8000", + "0x9", + "0x4825800180007ff8", + "0x429a", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400280007ff77fff", + "0x10780017fff7fff", + "0x60", + "0x4825800180007ff8", + "0x429a", + "0x400280007ff77fff", + "0x482680017ff78000", + "0x1", + "0x20780017fff7ffd", + "0xd", + "0x48127fff7fff8000", + "0x48127ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x48127fff7fff8000", + "0x48127ffd7fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x318", + "0x20680017fff7ff8", + "0x39", + "0x20680017fff7ffb", + "0x2a", + "0x400280007ffc7ffc", + "0x400280017ffc7ffd", + "0x400280027ffc7ffe", + "0x400280037ffc7fff", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x480a7ffb7fff8000", + "0x482680017ffc8000", + "0x4", + "0x4825800180007ffd", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffca", + "0x20680017fff7ffa", + "0xc", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff78000", + "0x1", + "0x480a7ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x482480017ff78000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x326", + "0x20680017fff7ffd", + "0xa", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480080027ffb8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x311", + "0x20680017fff7ffd", + "0xa", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480080017ffb8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127ffa7fff8000", + "0x48127ff97fff8000", + "0x1104800180018000", + "0x320", + "0x20680017fff7ffb", + "0xa", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdb4", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x7e7", + "0x482480017fff8000", + "0x7e6", + "0x480080007fff8000", + "0xa0680017fff8000", + "0x9", + "0x4825800180007ff9", + "0x24e0", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400280007ff87fff", + "0x10780017fff7fff", + "0x51", + "0x4825800180007ff9", + "0x24e0", + "0x400280007ff87fff", + "0x482680017ff88000", + "0x1", + "0x48297ffa80007ffb", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0xa", + "0x482680017ffa8000", + "0x2", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffa7fff8000", + "0x10780017fff7fff", + "0x8", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x40137ffc7fff8000", + "0x40137ffd7fff8001", + "0x20680017fff7ffe", + "0x2a", + "0x48127ffa7fff8000", + "0x48127ff87fff8000", + "0x480080007ffd8000", + "0x480080017ffc8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x35a", + "0x20680017fff7ffd", + "0x19", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc5", + "0x20680017fff7ffd", + "0x8", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x10780017fff7fff", + "0x14", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffa7fff8000", + "0x48127ff87fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff88000", + "0x1", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x482480017ffa8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48297ffc80007ffd", + "0x4824800180007fff", + "0x2", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0xc", + "0x40780017fff7fff", + "0x137", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x0", + "0x10780017fff7fff", + "0x28", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0xe8", + "0x20680017fff7ffd", + "0x42", + "0x480a7ff77fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x320", + "0x20680017fff7ffd", + "0x2e", + "0x48127ffc7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1", + "0x1104800180018000", + "0x317", + "0x480080007ff08000", + "0x20680017fff7ffc", + "0x19", + "0x48127ffb7fff8000", + "0x480a7ff87fff8000", + "0x480a7ffb7fff8000", + "0x48127fdd7fff8000", + "0x48127ffb7fff8000", + "0x480080007ff98000", + "0x1104800180018000", + "0x32e", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x48127ed97fff8000", + "0x48127ed97fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x106", + "0x48127ef57fff8000", + "0x480a7ff87fff8000", + "0x48127ed47fff8000", + "0x48127ed47fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ef27fff8000", + "0x48127ef27fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x116", + "0x48127ee67fff8000", + "0x480a7ff87fff8000", + "0x48127ed47fff8000", + "0x48127ed47fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ee37fff8000", + "0x48127ee37fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x125", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x48127ed47fff8000", + "0x48127ed47fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ed47fff8000", + "0x48127ed47fff8000", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x71a", + "0x482480017fff8000", + "0x719", + "0x480080007fff8000", + "0xa0680017fff8000", + "0x9", + "0x4825800180007ff8", + "0x12a2", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400280007ff77fff", + "0x10780017fff7fff", + "0x4c", + "0x4825800180007ff8", + "0x12a2", + "0x400280007ff77fff", + "0x482680017ff78000", + "0x1", + "0x20780017fff7ffd", + "0xd", + "0x48127fff7fff8000", + "0x48127ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcc3", + "0x20680017fff7ffe", + "0x27", + "0x400280007ffc7fff", + "0x48127ff07fff8000", + "0x48127fee7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x480a7ffb7fff8000", + "0x482680017ffc8000", + "0x1", + "0x4825800180007ffd", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd1", + "0x20680017fff7ffa", + "0xc", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff07fff8000", + "0x48127fee7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff78000", + "0x1", + "0x480a7ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x482480017ff78000", + "0x1", + "0x208b7fff7fff7ffe", + "0x4825800180007ffd", + "0x3f918d17e5ee77373b56385708f855659a07f75997f365cf87748628532a055", + "0x20680017fff7fff", + "0xf", + "0x40780017fff7fff", + "0x37", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x33c", + "0x20680017fff7ffd", + "0xc", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x1379ac0624b939ceb9dede92211d7db5ee174fe28be72245b0a1a2abd81c98f", + "0x480680017fff8000", + "0x53746f7261676552656164", + "0x400280007ffd7fff", + "0x400380017ffd7ffc", + "0x400280027ffd7ffd", + "0x400280037ffd7ffe", + "0x480280057ffd8000", + "0x20680017fff7fff", + "0xc", + "0x480280047ffd8000", + "0x482680017ffd8000", + "0x7", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480280067ffd8000", + "0x10780017fff7fff", + "0x9", + "0x480280047ffd8000", + "0x482680017ffd8000", + "0x8", + "0x480680017fff8000", + "0x1", + "0x480280067ffd8000", + "0x480280077ffd8000", + "0x1104800180018000", + "0x32a", + "0x20680017fff7ffd", + "0xa", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe17", + "0x20680017fff7ffd", + "0x2c", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x31c", + "0x20680017fff7ffd", + "0x1d", + "0x48307fe180007fff", + "0x20680017fff7fff", + "0xd", + "0x40780017fff7fff", + "0x2", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4163636f756e743a20756e617574686f72697a6564", + "0x400080007ffe7fff", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x482480017ffa8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x3", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x21", + "0x48127fda7fff8000", + "0x48127fda7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127fda7fff8000", + "0x48127fda7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x2ff", + "0x40780017fff7fff", + "0x1", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x2f7", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x456d69744576656e74", + "0x400280007ffc7fff", + "0x400380017ffc7ffb", + "0x400280027ffc7ffb", + "0x400280037ffc7ffc", + "0x400280047ffc7ffd", + "0x400280057ffc7ffe", + "0x480280077ffc8000", + "0x20680017fff7fff", + "0xd", + "0x480280067ffc8000", + "0x482680017ffc8000", + "0x8", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x10780017fff7fff", + "0x9", + "0x480280067ffc8000", + "0x482680017ffc8000", + "0xa", + "0x480680017fff8000", + "0x1", + "0x480280087ffc8000", + "0x480280097ffc8000", + "0x1104800180018000", + "0x2f7", + "0x20680017fff7ffd", + "0xb", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x2ee", + "0x20680017fff7ffd", + "0x19", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x31b", + "0x20680017fff7ffd", + "0xb", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x40", + "0x48127fbb7fff8000", + "0x48127fbb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127fbb7fff8000", + "0x48127fbb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x2ceccef7f994940b3962a6c67e0ba4fcd37df7d131417c604f91e03caecc1cd", + "0x1104800180018000", + "0x33c", + "0x20680017fff7ffd", + "0x1d", + "0x48127ffa7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcd", + "0x20680017fff7ffd", + "0xd", + "0x48127f977fff8000", + "0x48127ffa7fff8000", + "0x48127f977fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127f977fff8000", + "0x48127ffa7fff8000", + "0x48127f977fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x62", + "0x48127f977fff8000", + "0x48127f977fff8000", + "0x48127f977fff8000", + "0x48127f977fff8000", + "0x480680017fff8000", + "0x1", + "0x48127f977fff8000", + "0x48127f977fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x32c", + "0x20680017fff7ffe", + "0x54", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb3c", + "0x40137ff07fff8001", + "0x20680017fff7ffe", + "0x3c", + "0x48127fec7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x40137ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb56", + "0x20680017fff7ffa", + "0x22", + "0x20680017fff7ffd", + "0xf", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x480a80017fff8000", + "0x480a80007fff8000", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x48127fec7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x476574457865637574696f6e496e666f", + "0x400280007ffd7fff", + "0x400380017ffd7ffc", + "0x480280037ffd8000", + "0x20680017fff7fff", + "0xc", + "0x480280027ffd8000", + "0x482680017ffd8000", + "0x5", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480280047ffd8000", + "0x10780017fff7fff", + "0x9", + "0x480280027ffd8000", + "0x482680017ffd8000", + "0x6", + "0x480680017fff8000", + "0x1", + "0x480280047ffd8000", + "0x480280057ffd8000", + "0x1104800180018000", + "0x2e6", + "0x20680017fff7ffd", + "0xa", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x4e5", + "0x482480017fff8000", + "0x4e4", + "0x480080007fff8000", + "0xa0680017fff8000", + "0x9", + "0x4825800180007ff8", + "0x4a1a", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400280007ff77fff", + "0x10780017fff7fff", + "0x69", + "0x4825800180007ff8", + "0x4a1a", + "0x400280007ff77fff", + "0x482680017ff78000", + "0x1", + "0x48297ffa80007ffb", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0xd", + "0x482680017ffa8000", + "0x4", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480280007ffa8000", + "0x480280017ffa8000", + "0x480280027ffa8000", + "0x480280037ffa8000", + "0x10780017fff7fff", + "0xe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x20680017fff7ffb", + "0x3c", + "0x48127ff67fff8000", + "0x480a7ff97fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x2a9", + "0x20680017fff7ffd", + "0x26", + "0x400280007ffd7ffe", + "0x400280017ffd7fff", + "0x48127fd27fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127fd17fff8000", + "0x48127fd17fff8000", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x2", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbc", + "0x20680017fff7ffb", + "0xc", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x48127fd27fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff77fff8000", + "0x48127ff57fff8000", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff78000", + "0x1", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff87fff8000", + "0x482480017ff78000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48297ffa80007ffb", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc6a", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x27c", + "0x20680017fff7ffd", + "0x9", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48297ffb80007ffc", + "0xa0680017fff8000", + "0x6", + "0x48317ffe80007ffd", + "0x400280007ffa7fff", + "0x10780017fff7fff", + "0x10", + "0x482680017ffd8000", + "0x1", + "0x48307fff80007ffd", + "0x400280007ffa7fff", + "0x40780017fff7fff", + "0x1", + "0x482680017ffa8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x482a7ffd7ffb8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x496e646578206f7574206f6620626f756e6473", + "0x400080007ffe7fff", + "0x482680017ffa8000", + "0x1", + "0x480680017fff8000", + "0x1", + "0x48127ffc7fff8000", + "0x482480017ffb8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffd", + "0x9", + "0x40780017fff7fff", + "0xf6", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x4825800180007ffd", + "0x800000000000010ffffffffffffffffb781126dcae7b2321e66a241adc64d2f", + "0x20680017fff7fff", + "0x9", + "0x40780017fff7fff", + "0xf5", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x4825800180007ffc", + "0x800000000000010ffffffffffffffffb781126dcae7b2321e66a241adc64d2f", + "0x20680017fff7fff", + "0x9", + "0x40780017fff7fff", + "0xf4", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x484a7ffb7ffb8001", + "0x48487ffb80008001", + "0x482680017ffb8001", + "0x6f21413efbe40de150e596d72f7a8c5609ad26c15c915c1f4cdfcb99cee9e89", + "0x483080007fff7ffd", + "0x4850800080008001", + "0x48307ffb80018000", + "0xa0680017fff8000", + "0x4", + "0x10780017fff7fff", + "0x6", + "0x404480017ff97ffe", + "0x3", + "0x10780017fff7fff", + "0x8f", + "0x4844800180008002", + "0x4000000000000088000000000000000", + "0x4830800080017ffc", + "0x480280007ff87ffe", + "0x480280017ff87ffe", + "0x402480017ffd7fff", + "0xfbfffffffffffff77fffffffffffffff", + "0x400280027ff87fff", + "0x480a7ffb7fff8000", + "0x48127ff87fff8000", + "0x484a7ffc7ffc8001", + "0x48487ffc80008001", + "0x482680017ffc8001", + "0x6f21413efbe40de150e596d72f7a8c5609ad26c15c915c1f4cdfcb99cee9e89", + "0x483080007fff7ffd", + "0x4850800080008001", + "0x48307ffb80018000", + "0xa0680017fff8000", + "0x4", + "0x10780017fff7fff", + "0x6", + "0x404480017ff97ffe", + "0x3", + "0x10780017fff7fff", + "0x6e", + "0x4844800180008002", + "0x4000000000000088000000000000000", + "0x4830800080017ffc", + "0x480280037ff87ffe", + "0x480280047ff87ffe", + "0x402480017ffd7fff", + "0xfbfffffffffffff77fffffffffffffff", + "0x400280057ff87fff", + "0x480a7ffc7fff8000", + "0x48127ff87fff8000", + "0x480680017fff8000", + "0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca", + "0x480680017fff8000", + "0x5668060aa49730b7be4801df46ec62de53ecd11abe43a32873000c36e8dc1f", + "0x482680017ff88000", + "0x6", + "0x48507ffe7ffe8000", + "0x48507ffc7ffc8001", + "0x48507ffb80008001", + "0x482480017ffa8001", + "0x6f21413efbe40de150e596d72f7a8c5609ad26c15c915c1f4cdfcb99cee9e89", + "0x483080007fff7ffd", + "0x48307ffc80007ffb", + "0x20680017fff7fff", + "0x4e", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x480a7ff97fff8000", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x23f", + "0x20680017fff7fff", + "0x9", + "0x40780017fff7fff", + "0xae", + "0x48127f287fff8000", + "0x48127f4e7fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ffd7fff8000", + "0x48127fdc7fff8000", + "0x48127fdc7fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x230", + "0x48127ffd7fff8000", + "0x48127fa37fff8000", + "0x48127fa37fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x22a", + "0x48127fdd7fff8000", + "0x48127fdd7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x25d", + "0x20680017fff7fff", + "0x6", + "0x40780017fff7fff", + "0x1", + "0x10780017fff7fff", + "0xc", + "0x48307f8a80007ffe", + "0x20680017fff7fff", + "0x9", + "0x40780017fff7fff", + "0x39", + "0x48127f287fff8000", + "0x48127f907fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48127faa7fff8000", + "0x48127faa7fff8000", + "0x48127fc97fff8000", + "0x48127fc97fff8000", + "0x1104800180018000", + "0x298", + "0x20680017fff7fff", + "0x6", + "0x40780017fff7fff", + "0x1", + "0x10780017fff7fff", + "0xa", + "0x48307f5180007ffe", + "0x20680017fff7fff", + "0x7", + "0x48127f287fff8000", + "0x48127f907fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48127f287fff8000", + "0x48127f907fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0xd1", + "0x48127f287fff8000", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0xe0", + "0x482680017ff88000", + "0x3", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0xed", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x279", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x29a", + "0x1104800180018000", + "0x2c3", + "0x20680017fff7ffd", + "0xc", + "0x48127fe57fff8000", + "0x48127ff57fff8000", + "0x48127fe47fff8000", + "0x48127ff47fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x48127fe57fff8000", + "0x48127ff57fff8000", + "0x48127fe47fff8000", + "0x48127ff47fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffb", + "0x8", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x1", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe1b", + "0x20680017fff7ffd", + "0xa", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480080037ffb8000", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x1", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ff8", + "0x13", + "0x480680017fff8000", + "0x38f6a5b87c23cee6e7294bcc3302e95019f70f81586ff3cac38581f5ca96381", + "0x400280007ffb7fff", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x482680017ffb8000", + "0x1", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x288", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x10780017fff7fff", + "0x11", + "0x480680017fff8000", + "0xca58956845fecb30a8cb3efe23582630dbe8b80cc1fb8fd5d5e866b1356ad", + "0x400280007ffb7fff", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x482680017ffb8000", + "0x1", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x281", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffb", + "0x9", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x1", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x1379ac0624b939ceb9dede92211d7db5ee174fe28be72245b0a1a2abd81c98f", + "0x480680017fff8000", + "0x53746f726167655772697465", + "0x400280007ffc7fff", + "0x400380017ffc7ffb", + "0x400280027ffc7ffd", + "0x400280037ffc7ffe", + "0x400380047ffc7ffd", + "0x480280067ffc8000", + "0x20680017fff7fff", + "0xd", + "0x480280057ffc8000", + "0x482680017ffc8000", + "0x7", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x10780017fff7fff", + "0x9", + "0x480280057ffc8000", + "0x482680017ffc8000", + "0x9", + "0x480680017fff8000", + "0x1", + "0x480280077ffc8000", + "0x480280087ffc8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd3", + "0x20680017fff7ffd", + "0xb", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x241", + "0x40780017fff7fff", + "0x1", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff8f", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x456d69744576656e74", + "0x400280007ffc7fff", + "0x400380017ffc7ffb", + "0x400280027ffc7ffb", + "0x400280037ffc7ffc", + "0x400280047ffc7ffd", + "0x400280057ffc7ffe", + "0x480280077ffc8000", + "0x20680017fff7fff", + "0xd", + "0x480280067ffc8000", + "0x482680017ffc8000", + "0x8", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x10780017fff7fff", + "0x9", + "0x480280067ffc8000", + "0x482680017ffc8000", + "0xa", + "0x480680017fff8000", + "0x1", + "0x480280087ffc8000", + "0x480280097ffc8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff8f", + "0x20680017fff7ffd", + "0xb", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1", + "0x1104800180018000", + "0x1fb", + "0x20680017fff7ffd", + "0xd", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff814", + "0x20680017fff7ffe", + "0x2b", + "0xa0680017fff8004", + "0xe", + "0x4824800180047ffe", + "0x800000000000000000000000000000000000000000000000000000000000000", + "0x484480017ffe8000", + "0x110000000000000000", + "0x48307ffe7fff8002", + "0x480280007ffb7ffc", + "0x480280017ffb7ffc", + "0x402480017ffb7ffd", + "0xffffffffffffffeeffffffffffffffff", + "0x400280027ffb7ffd", + "0x10780017fff7fff", + "0x14", + "0x484480017fff8001", + "0x8000000000000000000000000000000", + "0x48307fff80007ffd", + "0x480280007ffb7ffd", + "0x480280017ffb7ffd", + "0x402480017ffc7ffe", + "0xf8000000000000000000000000000000", + "0x400280027ffb7ffe", + "0x40780017fff7fff", + "0x1", + "0x482680017ffb8000", + "0x3", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ff57fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffb8000", + "0x3", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x6", + "0x480a7ffb7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffb", + "0x8", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x1", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x43616c6c436f6e7472616374", + "0x400280007ff97fff", + "0x400380017ff97ff8", + "0x400380027ff97ffa", + "0x400380037ff97ffb", + "0x400280047ff97ffd", + "0x400280057ff97ffe", + "0x480280077ff98000", + "0x20680017fff7fff", + "0xb", + "0x480280067ff98000", + "0x482680017ff98000", + "0xa", + "0x480680017fff8000", + "0x0", + "0x480280087ff98000", + "0x480280097ff98000", + "0x10780017fff7fff", + "0x9", + "0x480280067ff98000", + "0x482680017ff98000", + "0xa", + "0x480680017fff8000", + "0x1", + "0x480280087ff98000", + "0x480280097ff98000", + "0x1104800180018000", + "0x1c3", + "0x20680017fff7ffd", + "0x9", + "0x48127fec7fff8000", + "0x48127fec7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127fec7fff8000", + "0x48127fec7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x1104800180018000", + "0x1d6", + "0x482480017fff8000", + "0x1d5", + "0x480080007fff8000", + "0xa0680017fff8000", + "0x9", + "0x4825800180007ff9", + "0x1112", + "0x482480017fff8000", + "0x100000000000000000000000000000000", + "0x400280007ff87fff", + "0x10780017fff7fff", + "0x43", + "0x4825800180007ff9", + "0x1112", + "0x400280007ff87fff", + "0x482680017ff88000", + "0x1", + "0x48297ffa80007ffb", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0xa", + "0x482680017ffa8000", + "0x1", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffa7fff8000", + "0x10780017fff7fff", + "0x8", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x20680017fff7ffe", + "0x1e", + "0x480080007fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff771", + "0x48127ff37fff8000", + "0x48127ff17fff8000", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffce", + "0x20680017fff7ffd", + "0x8", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x10780017fff7fff", + "0xd", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ffa7fff8000", + "0x48127ff87fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x4f7574206f6620676173", + "0x400080007ffe7fff", + "0x482680017ff88000", + "0x1", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ffb7fff8000", + "0x482480017ffa8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffc", + "0x9", + "0x40780017fff7fff", + "0x18", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x10780017fff7fff", + "0x31", + "0x4800800080068004", + "0x4800800180058004", + "0x4850800380037ffe", + "0x4850800180017ffe", + "0x485080007ffd7ffe", + "0x482480017fff7ffe", + "0x6f21413efbe40de150e596d72f7a8c5609ad26c15c915c1f4cdfcb99cee9e89", + "0x48307ffd7ffc7ffa", + "0x400280007ffa7ffd", + "0x400280017ffa7ffe", + "0x400380027ffa7ffb", + "0x400380037ffa7ffc", + "0x400380047ffa7ffd", + "0x480280057ffa8000", + "0x480280067ffa8000", + "0x48127ffd7fff8000", + "0x482680017ffa8000", + "0x7", + "0x480080007ffe8000", + "0x480080017ffd8000", + "0x48307ffe80007ffa", + "0x20680017fff7fff", + "0x5", + "0x40127ffe7fff7ffa", + "0x10780017fff7fff", + "0xe", + "0x48307ffe7ffa8000", + "0x48507ffe80007fff", + "0x48507fff7fff8000", + "0x48307ffa7ff68000", + "0x48307fff80027ffe", + "0x483080017fff7ff4", + "0x48507ffe7ffb7fff", + "0x48307ff380007ffe", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x10780017fff7fff", + "0x8", + "0x40780017fff7fff", + "0x8", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48127ff27fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffb", + "0x7", + "0x40780017fff7fff", + "0x2a", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffd", + "0x7", + "0x40780017fff7fff", + "0x2a", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x4800800080068004", + "0x4800800180058004", + "0x4850800380037ffe", + "0x4850800180017ffe", + "0x485080007ffd7ffe", + "0x482480017fff7ffe", + "0x6f21413efbe40de150e596d72f7a8c5609ad26c15c915c1f4cdfcb99cee9e89", + "0x48307ffd7ffc7ffa", + "0x48317ffd80007ffa", + "0x20680017fff7fff", + "0x4", + "0x402780017fff7fff", + "0x1", + "0x48317ffd80007ffb", + "0x48507ffe80007fff", + "0x48507fff7fff8000", + "0x48327ff97ffa8000", + "0x48307fff80027ffe", + "0x483180017fff7ffa", + "0x48507ffe7ffb7fff", + "0x48287ffb80007ffe", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x48127ff47fff8000", + "0x48317ffd80007ffc", + "0x20680017fff7fff", + "0x4", + "0x402780017fff7fff", + "0x1", + "0x48317ffd80007ffd", + "0x48507ffe80007fff", + "0x48507fff7fff8000", + "0x48327ff97ffc8000", + "0x48307fff80027ffe", + "0x483180017fff7ffc", + "0x48507ffe7ffb7fff", + "0x48287ffd80007ffe", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x48127ff47fff8000", + "0x480080007fff8000", + "0x480080017ffe8000", + "0x48307ffe80007ffb", + "0x20680017fff7fff", + "0x5", + "0x40127ffe7fff7ffb", + "0x10780017fff7fff", + "0xe", + "0x48307ffe7ffb8000", + "0x48507ffe80007fff", + "0x48507fff7fff8000", + "0x48307ffa7ff78000", + "0x48307fff80027ffe", + "0x483080017fff7ff5", + "0x48507ffe7ffb7fff", + "0x48307ff480007ffe", + "0x48127ffe7fff8000", + "0x48127ffe7fff8000", + "0x10780017fff7fff", + "0x8", + "0x40780017fff7fff", + "0x8", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffd", + "0x7", + "0x40780017fff7fff", + "0x30", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x484680017ffd8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa4", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x10e5fcd68658d0cf6ed280e34d0d0da9a510b7a6779230c9912806a2c939b9", + "0x400280007ffc7fff", + "0x400380017ffc7ffd", + "0x480280027ffc8000", + "0xa0680017fff8005", + "0xe", + "0x4824800180057ffe", + "0x7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00", + "0x484480017ffe8000", + "0x110000000000000000", + "0x48307ffe7fff8003", + "0x480280007ffb7ffc", + "0x480280017ffb7ffc", + "0x482480017ffb7ffd", + "0xffffffffffffffeefffffffffffffeff", + "0x400280027ffb7ffc", + "0x10780017fff7fff", + "0x11", + "0x48127ffe7fff8005", + "0x484480017ffe8000", + "0x8000000000000000000000000000000", + "0x48307ffe7fff8003", + "0x480280007ffb7ffd", + "0x482480017ffc7ffe", + "0xf0000000000000000000000000000100", + "0x480280017ffb7ffd", + "0x400280027ffb7ff9", + "0x402480017ffd7ff9", + "0xffffffffffffffffffffffffffffffff", + "0x20680017fff7ffd", + "0x4", + "0x402780017fff7fff", + "0x1", + "0x482680017ffb8000", + "0x3", + "0x482680017ffc8000", + "0x3", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x53746f7261676552656164", + "0x400280007ffb7fff", + "0x400380017ffb7ffa", + "0x400380027ffb7ffc", + "0x400380037ffb7ffd", + "0x480280057ffb8000", + "0x20680017fff7fff", + "0x1a", + "0x480280067ffb8000", + "0x4824800180007fff", + "0x0", + "0x480280047ffb8000", + "0x482680017ffb8000", + "0x7", + "0x20680017fff7ffd", + "0x6", + "0x480680017fff8000", + "0x1", + "0x10780017fff7fff", + "0x4", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x48307ffa80007ffb", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x6", + "0x480280047ffb8000", + "0x482680017ffb8000", + "0x8", + "0x480680017fff8000", + "0x1", + "0x480280067ffb8000", + "0x480280077ffb8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffb", + "0x8", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x1", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff643", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff639", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x0", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff86", + "0x20780017fff7ffd", + "0x6", + "0x480680017fff8000", + "0x0", + "0x10780017fff7fff", + "0x4", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x53746f726167655772697465", + "0x400280007ffb7fff", + "0x400380017ffb7ff9", + "0x400280027ffb7ffe", + "0x400280037ffb7ffc", + "0x400280047ffb7ffd", + "0x480280067ffb8000", + "0x20680017fff7fff", + "0xd", + "0x480280057ffb8000", + "0x482680017ffb8000", + "0x7", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x10780017fff7fff", + "0x9", + "0x480280057ffb8000", + "0x482680017ffb8000", + "0x9", + "0x480680017fff8000", + "0x1", + "0x480280077ffb8000", + "0x480280087ffb8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd4e", + "0x20680017fff7ffd", + "0xd", + "0x48127fef7fff8000", + "0x48127ff57fff8000", + "0x48127fee7fff8000", + "0x48127ff47fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127fef7fff8000", + "0x48127ff57fff8000", + "0x48127fee7fff8000", + "0x48127ff47fff8000", + "0x480680017fff8000", + "0x1", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x526573756c743a3a756e77726170206661696c65642e", + "0x1104800180018000", + "0xe", + "0x20680017fff7ffd", + "0x7", + "0x480680017fff8000", + "0x0", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x1", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffa", + "0x9", + "0x40780017fff7fff", + "0x1", + "0x480680017fff8000", + "0x0", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x400180007fff7ffd", + "0x480680017fff8000", + "0x1", + "0x48127ffe7fff8000", + "0x482480017ffd8000", + "0x1", + "0x208b7fff7fff7ffe" + ], + "hints": [ + [ + 2, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x95ec" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [30, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 49, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x0" }, + "rhs": { "Deref": { "register": "AP", "offset": -13 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [72, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [108, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [123, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [145, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 160, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x101c6" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [188, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 213, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Deref": { "register": "AP", "offset": -1 } }, + "rhs": { "Deref": { "register": "AP", "offset": -16 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [232, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [257, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [273, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [297, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 315, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0xd53e" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [351, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 376, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Deref": { "register": "AP", "offset": -1 } }, + "rhs": { "Deref": { "register": "AP", "offset": -16 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [398, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [423, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [439, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [463, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [478, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 496, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0xd53e" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [532, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 557, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Deref": { "register": "AP", "offset": -1 } }, + "rhs": { "Deref": { "register": "AP", "offset": -16 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [579, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [604, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [620, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [644, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [659, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 675, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0xf30c" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [700, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 725, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Deref": { "register": "AP", "offset": -1 } }, + "rhs": { "Deref": { "register": "AP", "offset": -26 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [744, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [769, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [785, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [800, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 816, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x410a" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [841, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 864, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Deref": { "register": "AP", "offset": -1 } }, + "rhs": { "Deref": { "register": "AP", "offset": -25 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [884, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [909, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [925, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [940, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 956, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x410a" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [981, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1004, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Deref": { "register": "AP", "offset": -1 } }, + "rhs": { "Deref": { "register": "AP", "offset": -25 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1024, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1049, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1065, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1080, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1096, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x1d10" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1115, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1134, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x0" }, + "rhs": { "Deref": { "register": "AP", "offset": -8 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1154, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1177, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1192, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1207, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x157e8" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1232, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1251, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x0" }, + "rhs": { "Deref": { "register": "AP", "offset": -23 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1272, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1290, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1305, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1319, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1334, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x1d10" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1353, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1372, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x0" }, + "rhs": { "Deref": { "register": "AP", "offset": -8 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1392, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1415, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1430, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1445, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x15c34" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1470, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1489, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x0" }, + "rhs": { "Deref": { "register": "AP", "offset": -23 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1510, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1528, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1543, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1557, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1572, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x101e4" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1609, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1634, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Deref": { "register": "AP", "offset": -1 } }, + "rhs": { "Deref": { "register": "AP", "offset": -56 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1653, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1678, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1694, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1709, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1724, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1739, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1755, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0xbb4e" }, + "rhs": { "Deref": { "register": "FP", "offset": -6 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1780, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 1803, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Deref": { "register": "AP", "offset": -1 } }, + "rhs": { "Deref": { "register": "AP", "offset": -25 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [1823, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1843, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1859, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1874, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [1913, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [2017, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [2039, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [2111, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [2225, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 2553, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x429a" }, + "rhs": { "Deref": { "register": "FP", "offset": -8 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [2656, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [2718, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 2762, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x24e0" }, + "rhs": { "Deref": { "register": "FP", "offset": -7 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [2850, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 2967, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x12a2" }, + "rhs": { "Deref": { "register": "FP", "offset": -8 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [3050, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 3125, + [ + { + "SystemCall": { + "system": { "Deref": { "register": "FP", "offset": -3 } } + } + } + ] + ], + [3190, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [3224, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [3226, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 3248, + [ + { + "SystemCall": { + "system": { "Deref": { "register": "FP", "offset": -4 } } + } + } + ] + ], + [ + 3488, + [ + { + "SystemCall": { + "system": { "Deref": { "register": "FP", "offset": -3 } } + } + } + ] + ], + [ + 3532, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x4a1a" }, + "rhs": { "Deref": { "register": "FP", "offset": -8 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [3644, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 3693, + [ + { + "TestLessThan": { + "lhs": { "Deref": { "register": "FP", "offset": -3 } }, + "rhs": { "Deref": { "register": "AP", "offset": -1 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [3713, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 3762, + [ + { + "FieldSqrt": { + "val": { "Deref": { "register": "AP", "offset": -4 } }, + "sqrt": { "register": "AP", "offset": 0 } + } + } + ] + ], + [ + 3772, + [ + { + "LinearSplit": { + "value": { "Deref": { "register": "AP", "offset": -3 } }, + "scalar": { "Immediate": "0x4000000000000088000000000000000" }, + "max_x": { "Immediate": "0xffffffffffffffffffffffffffffffff" }, + "x": { "register": "AP", "offset": 0 }, + "y": { "register": "AP", "offset": 1 } + } + } + ] + ], + [ + 3787, + [ + { + "FieldSqrt": { + "val": { "Deref": { "register": "AP", "offset": -4 } }, + "sqrt": { "register": "AP", "offset": 0 } + } + } + ] + ], + [ + 3797, + [ + { + "LinearSplit": { + "value": { "Deref": { "register": "AP", "offset": -3 } }, + "scalar": { "Immediate": "0x4000000000000088000000000000000" }, + "max_x": { "Immediate": "0xffffffffffffffffffffffffffffffff" }, + "x": { "register": "AP", "offset": 0 }, + "y": { "register": "AP", "offset": 1 } + } + } + ] + ], + [ + 4053, + [ + { + "SystemCall": { + "system": { "Deref": { "register": "FP", "offset": -4 } } + } + } + ] + ], + [4097, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [4099, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 4121, + [ + { + "SystemCall": { + "system": { "Deref": { "register": "FP", "offset": -4 } } + } + } + ] + ], + [ + 4199, + [ + { + "TestLessThan": { + "lhs": { "Deref": { "register": "AP", "offset": -1 } }, + "rhs": { + "Immediate": "0x800000000000000000000000000000000000000000000000000000000000000" + }, + "dst": { "register": "AP", "offset": 4 } + } + } + ] + ], + [ + 4203, + [ + { + "LinearSplit": { + "value": { "Deref": { "register": "AP", "offset": 3 } }, + "scalar": { "Immediate": "0x110000000000000000" }, + "max_x": { "Immediate": "0xffffffffffffffffffffffffffffffff" }, + "x": { "register": "AP", "offset": -2 }, + "y": { "register": "AP", "offset": -1 } + } + } + ] + ], + [ + 4213, + [ + { + "LinearSplit": { + "value": { "Deref": { "register": "AP", "offset": -2 } }, + "scalar": { "Immediate": "0x8000000000000000000000000000000" }, + "max_x": { "Immediate": "0xffffffffffffffffffffffffffffffff" }, + "x": { "register": "AP", "offset": -1 }, + "y": { "register": "AP", "offset": 0 } + } + } + ] + ], + [ + 4273, + [ + { + "SystemCall": { + "system": { "Deref": { "register": "FP", "offset": -7 } } + } + } + ] + ], + [ + 4315, + [ + { + "TestLessThanOrEqual": { + "lhs": { "Immediate": "0x1112" }, + "rhs": { "Deref": { "register": "FP", "offset": -7 } }, + "dst": { "register": "AP", "offset": 0 } + } + } + ] + ], + [4389, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]], + [ + 4412, + [ + { + "RandomEcPoint": { + "x": { "register": "AP", "offset": 4 }, + "y": { "register": "AP", "offset": 5 } + } + }, + { + "AllocConstantSize": { + "size": { "Immediate": "0x2" }, + "dst": { "register": "AP", "offset": 6 } + } + } + ] + ], + [ + 4474, + [ + { + "RandomEcPoint": { + "x": { "register": "AP", "offset": 4 }, + "y": { "register": "AP", "offset": 5 } + } + }, + { + "AllocConstantSize": { + "size": { "Immediate": "0x2" }, + "dst": { "register": "AP", "offset": 6 } + } + } + ] + ], + [ + 4561, + [ + { + "TestLessThan": { + "lhs": { "Deref": { "register": "AP", "offset": -1 } }, + "rhs": { + "Immediate": "0x7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" + }, + "dst": { "register": "AP", "offset": 5 } + } + } + ] + ], + [ + 4565, + [ + { + "LinearSplit": { + "value": { "Deref": { "register": "AP", "offset": 4 } }, + "scalar": { "Immediate": "0x110000000000000000" }, + "max_x": { "Immediate": "0xffffffffffffffffffffffffffffffff" }, + "x": { "register": "AP", "offset": -2 }, + "y": { "register": "AP", "offset": -1 } + } + } + ] + ], + [ + 4576, + [ + { + "LinearSplit": { + "value": { "Deref": { "register": "AP", "offset": 4 } }, + "scalar": { "Immediate": "0x8000000000000000000000000000000" }, + "max_x": { "Immediate": "0xfffffffffffffffffffffffffffffffe" }, + "x": { "register": "AP", "offset": -2 }, + "y": { "register": "AP", "offset": -1 } + } + } + ] + ], + [ + 4602, + [ + { + "SystemCall": { + "system": { "Deref": { "register": "FP", "offset": -5 } } + } + } + ] + ], + [ + 4698, + [ + { + "SystemCall": { + "system": { "Deref": { "register": "FP", "offset": -5 } } + } + } + ] + ], + [4771, [{ "AllocSegment": { "dst": { "register": "AP", "offset": 0 } } }]] + ], + "entry_points_by_type": { + "EXTERNAL": [ + { + "selector": "0xbc0eb87884ab91e330445c3584a50d7ddf4b568f02fbeb456a6242cce3f5d9", + "offset": 1445, + "builtins": ["range_check"] + }, + { + "selector": "0xfe80f537b66d12a00b6d3c072b44afbb716e78dde5c3f0ef116ee93d3e3283", + "offset": 816, + "builtins": ["pedersen", "range_check"] + }, + { + "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "offset": 0, + "builtins": ["range_check"] + }, + { + "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "offset": 160, + "builtins": ["range_check", "ec_op"] + }, + { + "selector": "0x1a35984e05126dbecb7c3bb9929e7dd9106d460c59b1633739a5c733a5fb13b", + "offset": 1096, + "builtins": ["range_check"] + }, + { + "selector": "0x1a6c6a0bdec86cc645c91997d8eea83e87148659e3e61122f72361fd5e94079", + "offset": 1334, + "builtins": ["range_check"] + }, + { + "selector": "0x213dfe25e2ca309c4d615a09cfc95fdb2fc7dc73fbcad12c450fe93b1f2ff9e", + "offset": 494, + "builtins": ["range_check", "ec_op"] + }, + { + "selector": "0x28420862938116cb3bbdbedee07451ccc54d4e9412dbef71142ad1980a30941", + "offset": 313, + "builtins": ["range_check", "ec_op"] + }, + { + "selector": "0x289da278a8dc833409cabfdad1581e8e7d40e42dcaed693fa4008dcdb4963b3", + "offset": 675, + "builtins": ["range_check", "ec_op"] + }, + { + "selector": "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd", + "offset": 956, + "builtins": ["pedersen", "range_check"] + }, + { + "selector": "0x2e3e21ff5952b2531241e37999d9c4c8b3034cccc89a202a6bf019bdf5294f9", + "offset": 1207, + "builtins": ["range_check"] + }, + { + "selector": "0x36fcbf06cd96843058359e1a75928beacfac10727dab22a3972f0af8aa92895", + "offset": 1572, + "builtins": ["range_check", "ec_op"] + } + ], + "L1_HANDLER": [], + "CONSTRUCTOR": [ + { + "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194", + "offset": 1755, + "builtins": ["pedersen", "range_check"] + } + ] + } +} diff --git a/configs/genesis-assets/OpenZeppelinAccountCairoOne.sierra.json b/configs/genesis-assets/OpenZeppelinAccountCairoOne.sierra.json new file mode 100644 index 0000000000..228596fd7d --- /dev/null +++ b/configs/genesis-assets/OpenZeppelinAccountCairoOne.sierra.json @@ -0,0 +1,4088 @@ +{ + "sierra_program": [ + "0x1", + "0x3", + "0x0", + "0x2", + "0x2", + "0x0", + "0x35c", + "0xa4", + "0x62", + "0x53797374656d", + "0x800000000000000100000000000000000000000000000000", + "0x556e696e697469616c697a6564", + "0x800000000000000200000000000000000000000000000001", + "0x1", + "0x0", + "0x66656c74323532", + "0x800000000000000700000000000000000000000000000000", + "0x537472756374", + "0x800000000000000700000000000000000000000000000002", + "0x1166fe35572d4e7764dac0caf1fd7fc591901fd01156db2561a07b68ab8dca2", + "0x2", + "0x45635374617465", + "0x4172726179", + "0x800000000000000300000000000000000000000000000001", + "0x536e617073686f74", + "0x800000000000000700000000000000000000000000000001", + "0x5", + "0x1baeba72e79e9db2587cf44fedb2f3700b2075a5e8e39a562584862c4b71f62", + "0x6", + "0x456e756d", + "0x800000000000000300000000000000000000000000000003", + "0x161ee0e6962e56453b5d68e09d1cabe5633858c1ba3a7e73fee8c70867eced0", + "0x7", + "0x800000000000000f00000000000000000000000000000001", + "0x395e2d9effe7f0b69bdf2f45608c775021c78e9285a6d02f0b03c366071397a", + "0x2ee1e2b1b89f8c495f200e4956278a4d47395fe262f27b52e5865c9524c08c3", + "0x800000000000000f00000000000000000000000000000003", + "0x9", + "0xa", + "0x16a4c8d7c05909052238a862d8cc3e7975bf05a07b3a69c6b28951083a6d672", + "0xc", + "0x1170ac65398c8208024657e2abfcc7d413e0b0238250cc2f0889c494729cd8f", + "0xb", + "0xd", + "0x800000000000000700000000000000000000000000000003", + "0x3288d594b9a45d15bb2fcb7903f06cdb06b27f0ba88186ec4cfaa98307cb972", + "0x248e8fae2f16a35027771ffd74d6a6f3c379424b55843563a18f566bba3d905", + "0xf", + "0x4563506f696e74", + "0x4e6f6e5a65726f", + "0x11", + "0x426f78", + "0x38", + "0x33", + "0x2c7badf5cd070e89531ef781330a9554b04ce4ea21304b67a30ac3d43df84a2", + "0x14", + "0x436f6e747261637441646472657373", + "0x3d37ad6eafb32512d2dd95a2917f6bf14858de22c27a1114392429f2e5c15d7", + "0x16", + "0x800000000000000f00000000000000000000000000000002", + "0x2b633ea9a5396c21c9ce15d6f8aa32835a82b176798ba8a47edeb0825e07a35", + "0x19", + "0x25a2187d2f5017d2e8cff793f7cda8758f9c542bbc6db8234a8e37cbdecc577", + "0x1a", + "0x1bfb87b9ee7c36c7bc943affbf8fc4700e2b12321bc36afd64867a0285de2c1", + "0x345219a7d1ae93472ca456d0f61eff989bc81dca542f91d3d7bd5dd00a1365e", + "0x1d", + "0x1fed1143e26121577943ec55560b24fec94a964c6ebbe8b424583dd0829cdf3", + "0x1e", + "0x101dc0399934cc08fa0d6f6f2daead4e4a38cabeea1c743e1fc28d2d6e58e99", + "0x219d1cfed848a1fa1c067301fe782a5607c3c21abb9f23182ec63e9dea17882", + "0x1abba7c5818bc544039d9b19c162245220c1aabbc7c285f0599468117492ed3", + "0x1c", + "0x21", + "0x90d0203c41ad646d024845257a6eceb2f8b59b29ce7420dd518053d2edeedc", + "0x53746f7261676541646472657373", + "0x53746f726167654261736541646472657373", + "0x26", + "0x3ae40d407f8074730e48241717c3dd78b7128d346cf81094e31806a3a5bdf", + "0x27", + "0x1f5d91ca543c7f9a0585a1c8beffc7a207d4af73ee640223a154b1da196a40d", + "0x29", + "0x2b", + "0x2c", + "0x800000000000000300000000000000000000000000000004", + "0x2e", + "0x32cb17bdb0d0d053909169ec443a25462b7e27237007511f772a7d957ce924c", + "0x2f", + "0x35", + "0x40", + "0x800000000000000700000000000000000000000000000006", + "0x19367431bdedfe09ea99eed9ade3de00f195dd97087ed511b8942ebb45dbc5a", + "0x31", + "0x32", + "0x753634", + "0x800000000000000700000000000000000000000000000004", + "0x3808c701a5d13e100ab11b6c02f91f752ecae7e420d21b56c90ec0a475cc7e5", + "0x34", + "0x38f4af6e44b2e0a6ad228a4874672855e693db590abc7105a5a9819dbbf5ba6", + "0x36", + "0x3693aea200ee3080885d21614d01b9532a8670f69e658a94addaadd72e9aca", + "0x18508a22cd4cf1437b721f596cd2277fc0a5e4dcd247b107ef2ef5fd2752cf7", + "0x39", + "0x8416421239ce8805ed9d27e6ddae62a97ab5d01883bb8f5246b4742a44b429", + "0x3a", + "0xcc5e86243f861d2d64b08c35db21013e773ac5cf10097946fe0011304886d5", + "0x3c", + "0x28f8d296e28032baef1f420f78ea9d933102ba47a50b1c5f80fc8a3a1041da", + "0x75313238", + "0x800000000000000700000000000000000000000000000008", + "0x2e655a7513158873ca2e5e659a9e175d23bf69a2325cdd0397ca3b8d864b967", + "0x3f", + "0x3508bb43f8880f8a37030d78eb1ac52d3a1abcccd991bf0258bdf64f81014ed", + "0x41", + "0x3e1934b18d91949ab9afdbdd1866a30ccca06c2b1e6581582c6b27f8b4f6555", + "0x44", + "0x29d7d57c04a880978e7b3689f6218e507f3be17588744b58dc17762447ad0e7", + "0x206697ab160b93fae267fb0d1700c2e30975ed668ca71c2d96eef75af0ea90", + "0x47", + "0xd4623473c7ca975d1ba7f5d5b056bb9a0adcf8338cd7ed945209d6b504f7f0", + "0x48", + "0xa853c166304d20fb0711becf2cbdf482dee3cac4e9717d040b7a7ab1df7eec", + "0x4a", + "0x506564657273656e", + "0x17b6ecc31946835b0d9d92c2dd7a9c14f29af0371571ae74a1b228828b2242", + "0x4d", + "0x34f9bd7c6cb2dd4263175964ad75f1ff1461ddc332fbfb274e0fb2a5d7ab968", + "0x4e", + "0x11c6d8087e00642489f92d2821ad6ebd6532ad1a3b6d12833da6d6810391511", + "0x10203be321c62a7bd4c060d69539c1fbe065baa9e253c74d2cc48be163e259", + "0x52", + "0x45634f70", + "0x74584e9f10ffb1a40aa5a3582e203f6758defc4a497d1a2d5a89f274a320e9", + "0x56", + "0x800000000000000300000000000000000000000000000002", + "0x25abf8fd76a01c7e2544d26b0a2e29212b05a36781e0330b46d878e43b307d1", + "0x58", + "0x4275696c74696e436f737473", + "0x9931c641b913035ae674b400b61a51476d506bbe8bba2ff8a6272790aba9e6", + "0x55", + "0x753332", + "0x28f184fd9e4406cc4475e4faaa80e83b54a57026386ee7d5fc4fa8f347e327d", + "0x5d", + "0xc1f0cb41289e2f6a79051e9af1ead07112b46ff17a492a90b3944dc53a51c8", + "0x5e", + "0x4761734275696c74696e", + "0x52616e6765436865636b", + "0x1a4", + "0x616c6c6f635f6c6f63616c", + "0x66696e616c697a655f6c6f63616c73", + "0x7265766f6b655f61705f747261636b696e67", + "0x77697468647261775f676173", + "0x6272616e63685f616c69676e", + "0x73746f72655f74656d70", + "0x61", + "0x60", + "0x66756e6374696f6e5f63616c6c", + "0x3", + "0x656e756d5f6d61746368", + "0x5f", + "0x7374727563745f6465636f6e737472756374", + "0x61727261795f6c656e", + "0x736e617073686f745f74616b65", + "0x5c", + "0x64726f70", + "0x7533325f636f6e7374", + "0x72656e616d65", + "0x7533325f6571", + "0x61727261795f6e6577", + "0x66656c743235325f636f6e7374", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x61727261795f617070656e64", + "0x7374727563745f636f6e737472756374", + "0x656e756d5f696e6974", + "0x5b", + "0x6765745f6275696c74696e5f636f737473", + "0x5a", + "0x77697468647261775f6761735f616c6c", + "0xe", + "0x73746f72655f6c6f63616c", + "0x59", + "0x57", + "0x4f7574206f6620676173", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x54", + "0x10", + "0x53", + "0x12", + "0x50", + "0x13", + "0x4f", + "0x4661696c656420746f20646573657269616c697a6520706172616d202332", + "0x51", + "0x4c", + "0x15", + "0x4b", + "0x17", + "0x18", + "0x49", + "0x1b", + "0x4661696c656420746f20646573657269616c697a6520706172616d202333", + "0x64697361626c655f61705f747261636b696e67", + "0x61727261795f736e617073686f745f706f705f66726f6e74", + "0x46", + "0x6a756d70", + "0x756e626f78", + "0x45", + "0x636f6e74726163745f616464726573735f746f5f66656c74323532", + "0x66656c743235325f737562", + "0x66656c743235325f69735f7a65726f", + "0x1f", + "0x656e61626c655f61705f747261636b696e67", + "0x42", + "0x43", + "0x100000000000000000000000000000001", + "0x20", + "0x4163636f756e743a20696e76616c69642074782076657273696f6e", + "0x4163636f756e743a20696e76616c69642063616c6c6572", + "0x647570", + "0x3e", + "0x22", + "0x23", + "0x4163636f756e743a20696e76616c6964207369676e6174757265", + "0x56414c4944", + "0x24", + "0x25", + "0x3d", + "0x28", + "0x2a", + "0x3b", + "0x37", + "0x2d", + "0x30", + "0x7533325f746f5f66656c74323532", + "0x3f918d17e5ee77373b56385708f855659a07f75997f365cf87748628532a055", + "0x73746f726167655f626173655f616464726573735f636f6e7374", + "0x1379ac0624b939ceb9dede92211d7db5ee174fe28be72245b0a1a2abd81c98f", + "0x73746f726167655f616464726573735f66726f6d5f62617365", + "0x73746f726167655f726561645f73797363616c6c", + "0x4163636f756e743a20756e617574686f72697a6564", + "0x656d69745f6576656e745f73797363616c6c", + "0x2ceccef7f994940b3962a6c67e0ba4fcd37df7d131417c604f91e03caecc1cd", + "0x6765745f657865637574696f6e5f696e666f5f73797363616c6c", + "0x61727261795f706f705f66726f6e74", + "0x61727261795f676574", + "0x496e646578206f7574206f6620626f756e6473", + "0x800000000000010ffffffffffffffffb781126dcae7b2321e66a241adc64d2f", + "0x65635f706f696e745f66726f6d5f785f6e7a", + "0x756e777261705f6e6f6e5f7a65726f", + "0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca", + "0x5668060aa49730b7be4801df46ec62de53ecd11abe43a32873000c36e8dc1f", + "0x65635f706f696e745f7472795f6e65775f6e7a", + "0x65635f706f696e745f69735f7a65726f", + "0x65635f706f696e745f756e77726170", + "0x38f6a5b87c23cee6e7294bcc3302e95019f70f81586ff3cac38581f5ca96381", + "0xca58956845fecb30a8cb3efe23582630dbe8b80cc1fb8fd5d5e866b1356ad", + "0x73746f726167655f77726974655f73797363616c6c", + "0x21adb5788e32c84f69a1863d85ef9394b7bf761a0ce1190f826984e5075c371", + "0x63616c6c5f636f6e74726163745f73797363616c6c", + "0x8", + "0x65635f73746174655f696e6974", + "0x65635f73746174655f6164645f6d756c", + "0x4", + "0x65635f73746174655f7472795f66696e616c697a655f6e7a", + "0x65635f706f696e745f7a65726f", + "0x65635f73746174655f616464", + "0x65635f6e6567", + "0x10e5fcd68658d0cf6ed280e34d0d0da9a510b7a6779230c9912806a2c939b9", + "0x706564657273656e", + "0xad292db4ff05a993c318438c1b6c8a8303266af2da151aa28ccece6726f1f1", + "0x626f6f6c5f6e6f745f696d706c", + "0x526573756c743a3a756e77726170206661696c65642e", + "0x1019", + "0xffffffffffffffff", + "0x86", + "0x7e", + "0x6e", + "0x63", + "0x64", + "0x65", + "0x66", + "0x67", + "0x68", + "0x69", + "0x6a", + "0x6b", + "0x6c", + "0x6d", + "0x6f", + "0x70", + "0x71", + "0x72", + "0x73", + "0x74", + "0x75", + "0x76", + "0x77", + "0x78", + "0x79", + "0x7a", + "0x7b", + "0x7c", + "0x7d", + "0x7f", + "0x80", + "0x10d", + "0x105", + "0xf5", + "0xbb", + "0xe7", + "0xdf", + "0x1b4", + "0x1a3", + "0x19a", + "0x189", + "0x14b", + "0x179", + "0x171", + "0x81", + "0x82", + "0x83", + "0x84", + "0x85", + "0x87", + "0x88", + "0x89", + "0x8a", + "0x8b", + "0x8c", + "0x8d", + "0x8e", + "0x8f", + "0x25c", + "0x24b", + "0x242", + "0x231", + "0x1f3", + "0x221", + "0x219", + "0x2d8", + "0x2c8", + "0x28e", + "0x2ba", + "0x2b2", + "0x355", + "0x345", + "0x309", + "0x336", + "0x32e", + "0x3d2", + "0x3c2", + "0x386", + "0x3b3", + "0x3ab", + "0x433", + "0x3fd", + "0x426", + "0x41f", + "0x4a1", + "0x492", + "0x462", + "0x484", + "0x47d", + "0x501", + "0x4cb", + "0x4f4", + "0x4ed", + "0x56f", + "0x560", + "0x530", + "0x552", + "0x54b", + "0x613", + "0x603", + "0x5f3", + "0x5e3", + "0x5a9", + "0x5d5", + "0x5cd", + "0x688", + "0x678", + "0x644", + "0x669", + "0x661", + "0x69f", + "0x6a4", + "0x6c0", + "0x6ba", + "0x74d", + "0x73e", + "0x735", + "0x701", + "0x70e", + "0x725", + "0x71e", + "0x76f", + "0x90", + "0x91", + "0x92", + "0x93", + "0x7b0", + "0x94", + "0x7a8", + "0x95", + "0x79d", + "0x96", + "0x97", + "0x98", + "0x99", + "0x9a", + "0x9b", + "0x9c", + "0x7c6", + "0x7cb", + "0x7d5", + "0x9d", + "0x9e", + "0x9f", + "0x7e4", + "0x7e9", + "0x805", + "0xa0", + "0x7ff", + "0xa1", + "0xa2", + "0xa3", + "0xa4", + "0xa5", + "0x82f", + "0x823", + "0x827", + "0xa6", + "0xa7", + "0xa8", + "0xa9", + "0xaa", + "0xab", + "0x84e", + "0xac", + "0xad", + "0xae", + "0xaf", + "0xb0", + "0x85d", + "0x861", + "0x882", + "0xb1", + "0xb2", + "0xb3", + "0x898", + "0xb4", + "0xb5", + "0x8dd", + "0xb6", + "0xb7", + "0x8d5", + "0xb8", + "0xb9", + "0xba", + "0x8ce", + "0xbc", + "0x8c8", + "0xbd", + "0xbe", + "0xbf", + "0xc0", + "0xc1", + "0x8f3", + "0x909", + "0xc2", + "0x923", + "0x971", + "0xc3", + "0x93c", + "0xc4", + "0xc5", + "0xc6", + "0x969", + "0xc7", + "0xc8", + "0x95f", + "0xc9", + "0x959", + "0xca", + "0xcb", + "0x992", + "0xcc", + "0xcd", + "0xce", + "0xcf", + "0xd0", + "0xd1", + "0xd2", + "0xd3", + "0xd4", + "0x9aa", + "0xd5", + "0xd6", + "0xd7", + "0xd8", + "0xd9", + "0xda", + "0xdb", + "0xdc", + "0x9c4", + "0xdd", + "0xde", + "0xa21", + "0xe0", + "0xe1", + "0x9e5", + "0xe2", + "0xe3", + "0x9ea", + "0xe4", + "0xe5", + "0xe6", + "0xa13", + "0xe8", + "0xa0c", + "0xa06", + "0xa1a", + "0xe9", + "0xea", + "0xeb", + "0xec", + "0xed", + "0xa49", + "0xee", + "0xa76", + "0xa94", + "0xef", + "0xf0", + "0xa89", + "0xf1", + "0xf2", + "0xa7e", + "0xf3", + "0xf4", + "0xad7", + "0xaaf", + "0xacd", + "0xac7", + "0xf6", + "0xaf8", + "0xf7", + "0xf8", + "0xf9", + "0xfa", + "0xb0d", + "0xfb", + "0xfc", + "0xfd", + "0xfe", + "0xb22", + "0xff", + "0x100", + "0xb27", + "0x101", + "0x102", + "0x103", + "0xb32", + "0xb71", + "0x104", + "0xb6a", + "0x106", + "0xb5d", + "0x107", + "0x108", + "0x109", + "0x10a", + "0x10b", + "0x10c", + "0x10e", + "0x10f", + "0x110", + "0x111", + "0x112", + "0xb92", + "0x113", + "0x114", + "0xb97", + "0x115", + "0x116", + "0x117", + "0xba2", + "0x118", + "0x119", + "0x11a", + "0xbcc", + "0x11b", + "0x11c", + "0x11d", + "0x11e", + "0xbc6", + "0x11f", + "0x120", + "0x121", + "0xbfa", + "0x122", + "0xbf2", + "0x123", + "0x124", + "0x125", + "0xc40", + "0x126", + "0xc36", + "0xc2e", + "0xc24", + "0x127", + "0x128", + "0x129", + "0x12a", + "0x12b", + "0x12c", + "0x12d", + "0x12e", + "0x12f", + "0xc51", + "0x130", + "0x131", + "0xc56", + "0x132", + "0x133", + "0x134", + "0xc61", + "0x135", + "0x136", + "0x137", + "0x138", + "0xcaf", + "0x139", + "0xc73", + "0x13a", + "0x13b", + "0xc78", + "0xca4", + "0x13c", + "0x13d", + "0x13e", + "0xc9a", + "0x13f", + "0x140", + "0xc93", + "0x141", + "0x142", + "0x143", + "0x144", + "0x145", + "0x146", + "0xcd9", + "0x147", + "0xce6", + "0x148", + "0x149", + "0x14a", + "0x14c", + "0xcfe", + "0x14d", + "0xd10", + "0xd22", + "0x14e", + "0xd9f", + "0x14f", + "0x150", + "0xd94", + "0x151", + "0x152", + "0x153", + "0xd88", + "0x154", + "0x155", + "0x156", + "0xd46", + "0x157", + "0x158", + "0x159", + "0x15a", + "0xd59", + "0xd6c", + "0xd6a", + "0x15b", + "0xd73", + "0xd82", + "0xd80", + "0x15c", + "0x15d", + "0x15e", + "0x15f", + "0x160", + "0xdc1", + "0x161", + "0xdcf", + "0xde7", + "0x162", + "0x163", + "0xdfd", + "0x164", + "0x165", + "0xe08", + "0x166", + "0x167", + "0x168", + "0x169", + "0xe13", + "0x16a", + "0xe28", + "0xe2d", + "0xe38", + "0x16b", + "0x16c", + "0x16d", + "0x16e", + "0x16f", + "0xe5a", + "0xe5f", + "0xe6a", + "0x170", + "0xe8a", + "0x172", + "0x173", + "0x174", + "0x175", + "0x176", + "0xea4", + "0x177", + "0xe9d", + "0x178", + "0x17a", + "0x17b", + "0xeb0", + "0x17c", + "0x17d", + "0xec2", + "0x17e", + "0x17f", + "0xec7", + "0x180", + "0x181", + "0x182", + "0xed2", + "0xf13", + "0xee4", + "0xee9", + "0xf05", + "0xeff", + "0xf0c", + "0x183", + "0xf29", + "0xf39", + "0x184", + "0x185", + "0x186", + "0x187", + "0xf34", + "0xf37", + "0x188", + "0x18a", + "0xf42", + "0xf48", + "0x18b", + "0x18c", + "0xf54", + "0xf57", + "0xf5f", + "0x18d", + "0x18e", + "0x18f", + "0x190", + "0x191", + "0x192", + "0x193", + "0xf9b", + "0xf90", + "0xf95", + "0x194", + "0x195", + "0x196", + "0x197", + "0x198", + "0xfa7", + "0x199", + "0x19b", + "0x19c", + "0xfd1", + "0xfd5", + "0xfdf", + "0xfe4", + "0xff1", + "0x19d", + "0x19e", + "0x19f", + "0x1a0", + "0x1a1", + "0x1a2", + "0x1005", + "0x1010", + "0x1c4", + "0x26c", + "0x2e7", + "0x364", + "0x3e1", + "0x441", + "0x4af", + "0x50f", + "0x57d", + "0x622", + "0x697", + "0x6ca", + "0x755", + "0x775", + "0x7b9", + "0x7bf", + "0x7dc", + "0x80f", + "0x837", + "0x856", + "0x86b", + "0x88a", + "0x89e", + "0x8e5", + "0x8f9", + "0x90f", + "0x92b", + "0x980", + "0x998", + "0x9b0", + "0x9cb", + "0x9d7", + "0xa31", + "0xa9e", + "0xae6", + "0xb15", + "0xb38", + "0xb77", + "0xba9", + "0xbd3", + "0xc04", + "0xc4a", + "0xc67", + "0xcbf", + "0xcdf", + "0xcf1", + "0xda9", + "0xdc9", + "0xdd5", + "0xded", + "0xdf0", + "0xe0d", + "0xe19", + "0xe3f", + "0xe71", + "0xe92", + "0xeaa", + "0xeb6", + "0xed8", + "0xf22", + "0xf3c", + "0xf59", + "0xf67", + "0xf75", + "0xfa1", + "0xfad", + "0xfb7", + "0xfc1", + "0xfc4", + "0xffa", + "0x1009", + "0x8b57", + "0x12014110400c0140f038080340c0140b0180a0240801c060140400c0200400", + "0x60700906c06064090680606409048050600505c06058150500504c0602809", + "0x2301422014210181605412014200141b018160241f018190241e0141d0141b", + "0x503c2b0a80504429020280480509c05098060581507805078050940609015", + "0x400c1e014320143101824054080c0120142f0142e018160542d014110ac2c", + "0x908c050dc050d80605815078050d40506c0607009074050d0060cc090c805", + "0x230143c0143b018160541e0143a0141b0181c02439018190240c014380180a", + "0x60581510405100050fc0609015030050f8060280904805078050f40605815", + "0x470144601816054450141b0180a0240c014110ac081100810c120140c01442", + "0x50100312805044100600503c0e07805124051200609015060050442b08c05", + "0x110ac230144f0144e018160541e0144a0144d0141b0184c0242c0140f0384b", + "0x615c0902056030050c8050c805154051500514c0614809144050442b14005", + "0x5c0184c024230145b0145a018160542f0141b0180a02432014590145901458", + "0x605815178050600506c0605809078050b005174060581504805030050c805", + "0x4b014630180a024230146201461018160541e0141b0183302423014600145f", + "0x506c06028090300503005030050600519c050c80503005198061940902064", + "0x6b0146a01816054320141b0180a0240c014110a42301469014680181605455", + "0x15078051b80506c06070090e8051b4060cc0907805114051b0060901508c05", + "0x16054021cc23014720147101816054270141b0180a02423014700146f01816", + "0x60901508c051dc051d806058151d4050600506c060580907805048051d006", + "0x21ec230147a01479018160540c0141b0180a0240c0140400c1e0140c01478", + "0x61f80908c051f4051f00605815078050480506c06058090600506c0602809", + "0x1605408210230148301482018160540820423014800147f018160544a0141b", + "0x8a0088908c052200521c0605815218050600506c0605809078051340521406", + "0x50149124c05014912480501491018900188f0188e0188d018050148c22c02", + "0xc014052641801405260860140525888014052609701405258232540525018", + "0x50149c0189f26c050149126c050149e0180c0149d26c050149c26c050149a", + "0x20014052900c0140528c0c01405244a2030052840c014052804d0140527005", + "0xa92a00501491018a7298050149101805014910140c29805030a508c05014a4", + "0x4d014052446e014052446e014052706e014052686e014052903a0140529006", + "0x91128050149c128050149a20005014982b0050149601805014ab2a89501494", + "0x52681e014052707d01405260ad01405258272540525012014052444b01405", + "0x9c2b80c014a10180c29805030a520c05014a406005014a4048050149c04805", + "0x52687a01405260b201405258b125405250b001405244af030052841801405", + "0x5014ab2d005014962cc9501494030050148c0a89501494030050149c03005", + "0xb7030052842f2540525075014052587701405260b601405258b5254052500c", + "0x9c09c050149a1c805014982ec05014962e895014942e405014912e0050149c", + "0x52583525405250bd25405250bc25405250322540525027014052442701405", + "0xc2018c110095014943000c014a12fc95014940dc95014941c0050149c2f805", + "0xc2941e0140529006310c301405244140140524406030c30140c2940c01405", + "0xa40e89501494030050149e0b005014a003005014c530c05014960140c30c05", + "0x5030860140c29405030970140c294970140524406030970140c2948801405", + "0x9501494018c9018c80180c014a1018c71ac050149831805014960f09501494", + "0x52703201405270510140526051014053146901405260cc014052580632cca", + "0x5030a520005014a433c95014943380c014a1334050149c0140c014a119c05", + "0x4b01405348d103005284d00300528405030ac0140c294ac0140524406030ac", + "0xa51f405014a4350950149434c050149134c05014a410495014940600501499", + "0x52842701405258d52540525005030ad0140c294ad0140524406030ad0140c", + "0xc2c805030a51e805014a435c0c014a12c805014910140c2c805030a53580c", + "0xd82540525005030b40140c294b40140524406030b40140c2941e0140524406", + "0xc1d405030a50140c2d805030a52d805014910180c2d805030a51dc05014a4", + "0xd92540525035014052443501405270350140526835014052901d0140529005", + "0x9809c050149e0140c2ec05030a52ec05014910180c2ec05030a51c805014a4", + "0x52686201405270da01405258472540525045254052503a014052446e01405", + "0x5014a412495014941c0050149836c9501494104050149110405014a40e805", + "0xdc254052503a0140527005030be0140c294be0140524406030be0140c29470", + "0x5014961800501498374050149612895014940180c21805030a503005014d2", + "0x2d014052602d014053145b01405260de014052584b254052502c0140528c5e", + "0x5030a531805014910180c31805030a51ac05014a4154050149c150050149c", + "0x528005030cc0140c294cc0140524406030cc0140c294690140529005030c6", + "0x9812c050148c018e113c0501498380050149637c9501494128050149106005", + "0x52ac05030dc0140c294dc0140524406030dc0140c2941801405308d301405", + "0x50149c37c050149c12c050149c134950149406005014c5370050149612c05", + "0x5260db014052584f2540525006030270140c2940c030052741801405348d3", + "0xa53880c014a10180c1d405030a51e8050149c38095014940140c0149d11c05", + "0x524406394e40300538c54254052501d01405244350140526005030270140c", + "0x94354050149e0140c35405030a535405014910180c35405030a5018e636005", + "0x6030da0140c2946201405290320140527832014052682d254052505525405", + "0x50149a16495014941ac050149c0140c36805030a539c0c014a13680501491", + "0xcf0140524406030cf0140c294063a05025405250d401405244d401405270d4", + "0x5014963789501494188050149816c950149433c050149e0140c33c05030a5", + "0x5e25405250e9030052842c25405250400140524440014052903c01405260ca", + "0xa40c805014ab2f0050149618095014940c8050148c0dc050149c2fc0501496", + "0xc294dd0140524406030dd0140c2946001405290060305e0140c2942c01405", + "0x5014910180c2e805030a5018ea2f4050149c0140c37405030a50140c17805", + "0x6030de0140c2945b01405290dd25405250ba0140527805030ba0140c294ba", + "0x50149117805014910b005014c50b005014eb0140c37805030a53780501491", + "0xe00140c2944f01405290180140528c8301405260a60140525862254052502c", + "0xa403005014ec3689501494060050149e0140c38005030a538005014910180c", + "0x528405030db0140c294ed03005284db0140524406030db0140c2944701405", + "0x501491018f33c80c014a13c40c014a10a805014f02cc0501491018ef3b80c", + "0x512540525067254052502a01405348063d42a01405270063d0d3254052502a", + "0xa5354050149633495014942c4050149e330950149436405014911a49501494", + "0xc625405250f7030052846b25405250f603005284d40140525805030d40140c", + "0xa532805014910180c32805030a50f005014a4018f833c0501496048050149e", + "0x37014052902201405260aa014052586e25405250c32540525005030ca0140c", + "0x910180c2f005030a5018f90140c2fc05030a52fc05014910180c2fc05030a5", + "0x6030fb0140c294063e82c01405260ba0140525805030bc0140c294bc01405", + "0xfd018fc050050149c1c095014943ec050149e0140c3ec05030a53ec0501491", + "0x640806404b3014052702a01405278b00140527806400063fcfe0140524406", + "0x5030a5019060190501904254050149825405014a440c0c014a1074050149c", + "0x41014052604001405260b10140525805030b10140c294b10140524406030b1", + "0xa52a805014910180c2a805030a508805014a4074050149a0180c35005030a5", + "0x12015090140601806420fb01405258be25405251070300528405030aa0140c", + "0xfb0310a0601403109030050180c25406019090140603006019090140601406", + "0x18018aa015090141801414018230150901414014120180642405018fe0181d", + "0x54240c080050740608022078954240509caa08c953ec0609c054240525405", + "0x109030b501422018b52cc0c424052c4050780601909014063f8060a80542cb1", + "0x10901432014230183201509014b3014200180642405018fe018ba0150c0bc05", + "0x3701509014062c40601909014bd01427018352f40c424052f0052a8062f005", + "0x60e805424050d4050a80601909014bf01427018402fc0c424050dc052a806", + "0x636c064240c0f03a030b50183a015090143a014b30183c01509014400142a", + "0x109014060c806019090142f014ba0180642405048050bc0601909014063f806", + "0x54240533cca03035018cf01509014cf014bd018cf01509014062f00632805", + "0xd801509014d501440018d501509014413500c2fc0635005424050183701841", + "0x611c0542405030050e8061140542405088050500636405424050780504806", + "0x542405018ca0180642405018fe018db11c45364fe014db01509014d80143c", + "0x637c4b03097128dc03109030490881e25441018490150901449014cf01849", + "0x513c053600613c054240513405354061340542405018d40180642405018fe", + "0x1090144a014140185001509014dc0141201806424053800536406150e003109", + "0x5424050bc0511c060b0054240515005114063780542405030050e80616c05", + "0xfe01509014fe0480c12406164fe0b4553f9090145e0b0de16c50048db0185e", + "0x61880542405018320180642405018fe018dd01480180054240c1640537006", + "0x12018064240534c0537c0619cd303109014da0144b018da01509014600144a", + "0x513c06318054240519c05134061ac05424050b40505006334054240515405", + "0x54240c330051500633069144954240530cc61accd3f8e0018c30150901462", + "0x109014720142d018722f80c424051b8051540601909014063f8061c0052e06e", + "0x7501509014b90145b01806424052ec05140062e4bb03109014be0145901806", + "0x62d0054240514405048062d805424051dc050b0061dc05424051d40537806", + "0xfe014b201509014b60143c0187a01509014fe0143a018b8015090146901414", + "0x54240514405048062c005424051c0051000601909014063f8062c87a2e0b4", + "0x8001509014b00143c018ad01509014fe0143a0187d01509014690141401883", + "0x515405048062b00542405374051000601909014063f806200ad1f4833f805", + "0x109014ac0143c0189b01509014fe0143a018a6015090142d01414018a801509", + "0x2f014ba0180642405048050bc0601909014063f8062189b298a83f80521805", + "0x970150901497014bd018970150901406178062200542405018320180642405", + "0x1509014932480c2fc062480542405018370189301509014972200c0d406", + "0x643c054240537c0505006438054240512c050480643405424050000510006", + "0x5018fe019114410f438fe01511015090150d0143c01910015090140c0143a", + "0x3201806424052cc051800601909014120142f01806424052e8050b40601909", + "0x1134480c0d40644c054240544c052f40644c0542405018dd019120150901406", + "0x54580510006458054240545115030bf0191501509014060dc064500542405", + "0x1090140c0143a019180150901422014140190c015090141e014120191701509", + "0x50bc0601909014063f806469194610c3f805468054240545c050f00646405", + "0x508805050064700542405078050480646c05424050a805100060190901412", + "0x11f4791d470fe0151f015090151b0143c0191e015090140c0143a0191d01509", + "0x109014060c8060190901495014600180642405048050bc0601909014063f806", + "0x5424054852003035019210150901521014bd0192101509014061780648005", + "0x12501509015240144001924015090152248c0c2fc0648c05424050183701922", + "0x649c0542405030050e80642c0542405074050500649805424053ec0504806", + "0xc030060309501806424050180c0192849d0b498fe0152801509015250143c", + "0x5050060800542405048050480601909014063f8063ec18031290501203109", + "0x220781d25509014aa08c20254fb018aa01509014fe01418018230150901414", + "0x2a03109014270141e0180642405018fe018b10152a09c054240c0880507406", + "0x6424052d4052e80601909014063f8060bc054acb501509030b301422018b3", + "0xbd2f00c424050c8052a8060c805424052e80508c062e805424050a80508006", + "0x27018bf0dc0c424050d4052a8060d40542405018b101806424052f00509c06", + "0x40014b30183a01509014bf0142a0184001509014bd0142a01806424050dc05", + "0x109014060c80601909014063f8060192c019090303a1000c2d4061000542405", + "0x5424053283c03035018ca01509014ca014bd018ca01509014062f0060f005", + "0xd501509014d401440018d401509014cf1040c2fc06104054240501837018cf", + "0x6114054240507805050063640542405014051880636005424050740504806", + "0x63f80636c47114d936012014db01509014d50143c0184701509014950143a", + "0xc1241e074951040612405424051240533c061240542405018ca0180642405", + "0x4d014d50184d01509014063500601909014063f80637c4b0312d128dc03109", + "0x5370050480601909014e0014d9018543800c4240513c053600613c0542405", + "0x109014950143a0185e015090144a014140182c015090140501462018de01509", + "0x501642d1541242405374601782c37812368063740542405150051140618005", + "0xd301509014060c80601909014063f806368054b862015090305b014d30185b", + "0x6019090145101469018691440c4240519c051440619c05424051880519c06", + "0xcd3300c424053186b030cc018c601509014d30144f0186b0150901469014bd", + "0x5b018064240530c05140061b8c303109014cc014590180642405334050b406", + "0x5048061c805424052f8050b0062f805424051c005378061c005424051b805", + "0x500143a01875015090145901414018b9015090142d01462018bb0150901455", + "0x642405018fe018b61dc752e4bb048052d805424051c8050f0061dc0542405", + "0x61e805424050b405188062e0054240515405048062d005424053680510006", + "0x120148301509014b40143c018b001509014500143a018b2015090145901414", + "0xad0150901406178061f40542405018320180642405018fe018832c0b21e8b8", + "0x62b00542405018370188001509014ad1f40c0d4062b405424052b4052f406", + "0x626c054240512c050480629805424052a005100062a00542405200ac030bf", + "0x3c0189701509014950143a0188801509014df0141401886015090140501462", + "0x1090142f0142d0180642405018fe0189325c882189b0480524c054240529805", + "0x52f4060000542405018dd0189201509014060c806019090142a0146001806", + "0x10e030bf0190e01509014060dc0643405424050009203035018000150901400", + "0x50146201911015090141d0141201910015090150f014400190f015090150d", + "0x5440050f0064500542405254050e80644c054240507805050064480542405", + "0x645805424052c4051000601909014063f8064551444d12444120151501509", + "0x3a01918015090141e014140190c01509014050146201917015090141d01412", + "0x5018fe0191a4651843117048054680542405458050f006464054240525405", + "0xbd0191c01509014061780646c05424050183201806424053f8051800601909", + "0xc2fc064780542405018370191d015090151c46c0c0d406470054240547005", + "0x51880648405424050600504806480054240547c051000647c05424054751e", + "0x1200143c0192401509014950143a0192301509014fb01414019220150901405", + "0x60190901406014060500542405018cd019254912348921048054940542405", + "0x642405018fe0181e0740c4bcfb0600c4240c030060309501806424050180c", + "0x18015090141801412018200880c4240508c051ac0608c05424053f80506006", + "0xb30150901418014120180642405018fe018aa01530048054240c0800531806", + "0x1201509014120500c30c060bc054240508805060062d405424053ec0505006", + "0xfe01832015312e8054240c0a8051c0060a8b109c95424050bcb52cc951b806", + "0x60dc054c83501509030bd01472018bd2f00c424052e8052f8060190901406", + "0x40014aa0184001509014bf01423018bf01509014bc014200180642405018fe", + "0x109014ca014aa018ca01509014062c406019090143a014270183c0e80c42405", + "0x542405104050a80635005424050f0050a80601909014cf014270184133c0c", + "0x642405018fe018064cc064240c354d4030b5018d401509014d4014b3018d5", + "0x5018bc018d801509014060c80601909014120146901806424050d40514006", + "0x109014060dc061140542405364d803035018d901509014d9014bd018d901509", + "0x10901427014120184901509014db01440018db015090144511c0c2fc0611c05", + "0x542405254050e80612c05424052c405050061280542405014051880637005", + "0x63280601909014063f806134df12c4a370120144d01509014490143c018df", + "0xc4d0543800c4240c13cb109c951040613c054240513c0533c0613c0542405", + "0xd8018500150901459014d50185901509014063500601909014063f8060b455", + "0x51880636805424053800504806019090145b014d9018de16c0c4240514005", + "0xde014450185101509014950143a01867015090145401414018d30150901405", + "0xd3368182ec0633405424050d40513c063300542405048052f4061a40542405", + "0x6318054d46b0150903062014d301862374601782c04909014cd3306914467", + "0x51b805144061b805424051ac0519c0630c0542405018320180642405018fe", + "0x109014c30144f018b901509014be014bd01806424051c0051a4062f87003109", + "0x109014720145901806424052ec050b4062ec7203109014752e40c330061d405", + "0x5424052d005378062d005424052d80516c06019090147701450018b61dc0c", + "0xb0015090145e01462018b2015090142c014120187a01509014b80142c018b8", + "0x52b405424051e8050f0061f40542405374050e80620c05424051800505006", + "0x50b005048062000542405318051000601909014063f8062b47d20cb02c812", + "0x109014dd0143a018a6015090146001414018a8015090145e01462018ac01509", + "0x500180642405018fe0188626ca62a0ac048052180542405200050f00626c05", + "0x5424050185e0188801509014060c80601909014120146901806424050d405", + "0x9201509014060dc0624c054240525c8803035018970150901497014bd01897", + "0x10e0150901455014120190d0150901400014400180001509014932480c2fc06", + "0x64440542405254050e80644005424050b4050500643c05424050140518806", + "0x50dc050b40601909014063f806449114410f4381201512015090150d0143c", + "0xb90191301509014060c80601909014120146901806424052f0051800601909", + "0x60dc0645405424054511303035019140150901514014bd019140150901406", + "0x27014120190c0150901517014400191701509015154580c2fc064580542405", + "0x5254050e80646805424052c40505006464054240501405188064600542405", + "0x601909014063f8064711b46919460120151c015090150c0143c0191b01509", + "0x518806478054240509c050480647405424050c80510006019090141201469", + "0x11d0143c0192101509014950143a0192001509014b1014140191f0150901405", + "0x601909014aa0142d0180642405018fe019224852047d1e048054880542405", + "0x109014063740648c0542405018320180642405050051d406019090142201460", + "0x5424050183701925015090152448c0c0d4064900542405490052f40649005", + "0x542405060050480649c054240542c051000642c054240549526030bf01926", + "0x13801509014950143a0193701509014fb014140193601509014050146201928", + "0xfe014600180642405018fe019394e1374d928048054e4054240549c050f006", + "0x642805424050185e0193a01509014060c8060190901414014750180642405", + "0xbf0193c01509014060dc064ec05424054293a030350190a015090150a014bd", + "0x620193f015090141d014120193e015090153d014400193d015090153b4f00c", + "0x50f0065080542405254050e80650405424050780505006500054240501405", + "0x642405018050181401509014063340650d42505404fc1201543015090153e", + "0x109014063f8060781d031443ec18031090300c0180c25406019090140603006", + "0x54240506005048060802203109014230146b0182301509014fe0141801806", + "0x542405060050480601909014063f8062a805514120150903020014c601818", + "0x54240504814030c30182f015090142201418018b501509014fb01414018b3", + "0x60c805518ba015090302a014700182a2c427255090142f2d4b32546e01812", + "0x37015470d4054240c2f4051c8062f4bc03109014ba014be0180642405018fe", + "0x52a80610005424052fc0508c062fc05424052f0050800601909014063f806", + "0x5328052a8063280542405018b101806424050e80509c060f03a0310901440", + "0x109014410142a018d4015090143c0142a018064240533c0509c06104cf03109", + "0x109014063f8060194801909030d53500c2d4063500542405350052cc0635405", + "0x62f0063600542405018320180642405048051a40601909014350145001806", + "0x5018370184501509014d93600c0d4063640542405364052f4063640542405", + "0x509c0504806124054240536c051000636c054240511447030bf0184701509", + "0x109014950143a0184b01509014b1014140184a015090140501462018dc01509", + "0xca0180642405018fe0184d37c4b128dc048051340542405124050f00637c05", + "0x149150e0031090304f2c427254410184f015090144f014cf0184f0150901406", + "0x6140054240516405354061640542405018d40180642405018fe0182d1540c", + "0x62018da01509014e001412018064240516c05364063785b0310901450014d8", + "0x5114061440542405254050e80619c0542405150050500634c054240501405", + "0xda060bb018cd01509014350144f018cc0150901412014bd0186901509014de", + "0xc60154a1ac054240c1880534c06188dd1805e0b01242405334cc1a45119cd3", + "0x6e014510186e015090146b01467018c301509014060c80601909014063f806", + "0x530c0513c062e405424052f8052f406019090147001469018be1c00c42405", + "0x51c8051640601909014bb0142d018bb1c80c424051d4b9030cc0187501509", + "0x109014b4014de018b401509014b60145b01806424051dc05140062d87703109", + "0x54240517805188062c805424050b005048061e805424052e0050b0062e005", + "0xad015090147a0143c0187d01509014dd0143a01883015090146001414018b0", + "0x2c014120188001509014c6014400180642405018fe018ad1f4832c0b204805", + "0x5374050e806298054240518005050062a0054240517805188062b00542405", + "0x601909014063f8062189b298a82b0120148601509014800143c0189b01509", + "0x10901406178062200542405018320180642405048051a406019090143501450", + "0x542405018370189301509014972200c0d40625c054240525c052f40625c05", + "0x542405154050480643405424050000510006000054240524c92030bf01892", + "0x11101509014950143a01910015090142d014140190f0150901405014620190e", + "0x370142d0180642405018fe019124451043d0e048054480542405434050f006", + "0x644c0542405018320180642405048051a40601909014bc014600180642405", + "0x3701915015090151444c0c0d4064500542405450052f4064500542405018b9", + "0x504806430054240545c051000645c054240545516030bf019160150901406", + "0x950143a0191a01509014b10141401919015090140501462019180150901427", + "0x642405018fe0191c46d1a46518048054700542405430050f00646c0542405", + "0x620191e0150901427014120191d0150901432014400180642405048051a406", + "0x50f0064840542405254050e80648005424052c4050500647c054240501405", + "0x6424052a8050b40601909014063f806489214811f4781201522015090151d", + "0x5018dd0192301509014060c80601909014140147501806424050880518006", + "0x109014060dc0649405424054912303035019240150901524014bd0192401509", + "0x109014180141201927015090150b014400190b01509015254980c2fc0649805", + "0x542405254050e8064dc05424053ec05050064d8054240501405188064a005", + "0x51800601909014063f8064e5384dd364a0120153901509015270143c01938", + "0x10a0150901406178064e80542405018320180642405050051d40601909014fe", + "0x64f00542405018370193b015090150a4e80c0d4064280542405428052f406", + "0x64fc054240507405048064f805424054f405100064f405424054ed3c030bf", + "0x3c0194201509014950143a01941015090141e0141401940015090140501462", + "0xc030060309501806424050180c01943509415013f0480550c05424054f805", + "0x51ac0608805424053f8050600601909014063f8063ec180314b0501203109", + "0x230154c080054240c0780531806048054240504805048060781d0310901422", + "0xaa01423018aa015090141d014200180642405080051a40601909014063f806", + "0x109014062c40601909014b1014270182a2c40c4240509c052a80609c0542405", + "0x5424050a8050a80601909014b5014270182f2d40c424052cc052a8062cc05", + "0x64240c0c8ba030b5018ba01509014ba014b301832015090142f0142a018ba", + "0x52f4062f40542405018bc018bc01509014060c80601909014063f8060194d", + "0x37030bf0183701509014060dc060d405424052f4bc03035018bd01509014bd", + "0x5014620183a0150901412014120184001509014bf01440018bf0150901435", + "0x5100050f00633c0542405254050e806328054240505005050060f00542405", + "0xcf018d401509014063280601909014063f806104cf3283c0e8120144101509", + "0x5018fe018453640c538d83540c4240c350140489510406350054240535005", + "0x4903109014db014d8018db0150901447014d50184701509014063500601909", + "0x615005424050140518806380054240535405048060190901449014d9018dc", + "0xda0185901509014dc014450182d01509014950143a0185501509014d801414", + "0x5b0154f140054240c13c0534c0613c4d37c4b12812424051642d1545438012", + "0x2c014510182c015090145001467018de01509014060c80601909014063f806", + "0x53780513c063680542405180052f406019090145e01469018601780c42405", + "0x5374051640601909014620142d018623740c4240534cda030cc018d301509", + "0x10901469014de0186901509014510145b018064240519c05140061446703109", + "0x54240512c05188061ac054240512805048063340542405330050b00633005", + "0x7001509014cd0143c0186e015090144d0143a018c301509014df01414018c6", + "0x4a01412018be015090145b014400180642405018fe018701b8c33186b04805", + "0x5134050e8062e4054240537c05050062ec054240512c05188061c80542405", + "0x601909014063f8061dc752e4bb1c8120147701509014be0143c0187501509", + "0xb603035018b401509014b4014bd018b40150901406178062d8054240501832", + "0xb201440018b201509014b81e80c2fc061e8054240501837018b801509014b4", + "0x511405050061f40542405014051880620c054240536405048062c00542405", + "0x802b47d20c12014ac01509014b00143c0188001509014950143a018ad01509", + "0x5018320180642405074051800601909014230142d0180642405018fe018ac", + "0x109014a62a00c0d4062980542405298052f4062980542405018dd018a801509", + "0x5424052200510006220054240526c86030bf0188601509014060dc0626c05", + "0x15090141401414018920150901405014620189301509014120141201897", + "0xfe0190e434002489304805438054240525c050f0064340542405254050e806", + "0x11001509014061780643c05424050183201806424053f805180060190901406", + "0x644805424050183701911015090151043c0c0d4064400542405440052f406", + "0x645405424050600504806450054240544c051000644c054240544512030bf", + "0x3c0190c01509014950143a0191701509014fb0141401916015090140501462", + "0xc030050309501806424050180c01918431174591504805460054240545005", + "0x51ac0608805424053f8050600601909014063f8063ec18031500501203109", + "0x2301551080054240c0780531806048054240504805048060781d0310901422", + "0x52a80609c05424052a80508c062a80542405074050800601909014063f806", + "0x52cc052a8062cc0542405018b101806424052c40509c060a8b10310901427", + "0x1090142f0142a018ba015090142a0142a01806424052d40509c060bcb503109", + "0x109014063f8060195201909030322e80c2d4062e805424052e8052cc060c805", + "0x52f4062f40542405018bc018bc01509014060c80601909014200146901806", + "0x37030bf0183701509014060dc060d405424052f4bc03035018bd01509014bd", + "0x12014120183a0150901406014770184001509014bf01440018bf0150901435", + "0x5100050f00633c0542405254050e806328054240505005050060f00542405", + "0xcf018d401509014063280601909014063f806104cf3283c0e8120144101509", + "0x5018fe018453640c54cd83540c4240c350140489510406350054240535005", + "0x4903109014db014d8018db0150901447014d50184701509014063500601909", + "0x615005424053600505006380054240535405048060190901449014d9018dc", + "0xbd0185901509014dc014450182d01509014950143a01855015090140601477", + "0xb40184f134df12c4a04909014501642d15454380142d806140054240508005", + "0x52e0060b00542405018320180642405018fe018de0155416c054240c13c05", + "0xdd014b00180642405180052c80637460031090145e0147a0185e015090145b", + "0x50b40636862031090146734c0c20c0619c05424050b00513c0634c0542405", + "0x51a40516c06019090145101450018691440c42405188051640601909014da", + "0x109014df014770186b01509014cd0142c018cd01509014cc014de018cc01509", + "0x542405134050e8061b8054240512c050500630c0542405128050480631805", + "0x51000601909014063f8062f8701b8c331812014be015090146b0143c01870", + "0x4b01414018b9015090144a01412018bb01509014df014770187201509014de", + "0x752e4bb048052d805424051c8050f0061dc0542405134050e8061d40542405", + "0x6178062d00542405018320180642405080051a40601909014063f8062d877", + "0x5018370187a01509014b82d00c0d4062e005424052e0052f4062e00542405", + "0x5018051dc0620c05424052c005100062c005424051e8b2030bf018b201509", + "0x109014950143a01880015090144501414018ad01509014d9014120187d01509", + "0x2d0180642405018fe018a82b0802b47d048052a0054240520c050f0062b005", + "0x542405018dd018a601509014060c806019090141d01460018064240508c05", + "0x8801509014060dc06218054240526ca6030350189b015090149b014bd0189b", + "0x92015090140601477018930150901497014400189701509014862200c2fc06", + "0x64380542405254050e8064340542405050050500600005424050480504806", + "0x53f8051800601909014063f80643d0e43400248120150f01509014930143c", + "0x64440542405444052f40644405424050185e0191001509014060c80601909", + "0x6450054240544913030bf0191301509014060dc0644805424054451003035", + "0x14019170150901418014120191601509014060147701915015090151401440", + "0x116048054640542405454050f0064600542405254050e80643005424053ec05", + "0x63ec180315505012031090300c0140c254060190901406030064651843117", + "0x5048060781d03109014220146b0182201509014fe014180180642405018fe", + "0x50800601909014063f80608c0555820015090301e014c6018120150901412", + "0x509c060a8b10310901427014aa0182701509014aa01423018aa015090141d", + "0x52d40509c060bcb503109014b3014aa018b301509014062c40601909014b1", + "0x5424052e8052cc060c805424050bc050a8062e805424050a8050a80601909", + "0x60190901420014690180642405018fe0180655c064240c0c8ba030b5018ba", + "0xbc03035018bd01509014bd014bd018bd01509014062f0062f0054240501832", + "0xbf01440018bf01509014350dc0c2fc060dc0542405018370183501509014bd", + "0x505005050060f0054240504805048060e80542405018051dc061000542405", + "0xcf3283c0e8120144101509014400143c018cf01509014950143a018ca01509", + "0x951040635005424053500533c063500542405018ca0180642405018fe01841", + "0x4701509014063500601909014063f806114d903158360d503109030d405012", + "0x60190901449014d9018dc1240c4240536c053600636c054240511c0535406", + "0x3a018550150901406014770185401509014d801414018e001509014d501412", + "0x141f4061400542405080052f406164054240537005114060b4054240525405", + "0xde0155916c054240c13c052d00613c4d37c4b1281242405140590b455150e0", + "0x5e0147a0185e015090145b014b80182c01509014060c80601909014063f806", + "0x50b00513c0634c0542405374052c0060190901460014b2018dd1800c42405", + "0x5188051640601909014da0142d018da1880c4240519cd3030830186701509", + "0x109014cc014de018cc01509014690145b018064240514405140061a45103109", + "0x5424051280504806318054240537c051dc061ac0542405334050b00633405", + "0xbe015090146b0143c01870015090144d0143a0186e015090144b01414018c3", + "0xdf014770187201509014de014400180642405018fe018be1c06e30cc604805", + "0x5134050e8061d4054240512c05050062e4054240512805048062ec0542405", + "0x601909014063f8062d8771d4b92ec12014b601509014720143c0187701509", + "0x52e0052f4062e005424050185e018b401509014060c806019090142001469", + "0x51e8b2030bf018b201509014060dc061e805424052e0b403035018b801509", + "0x109014d9014120187d0150901406014770188301509014b001440018b001509", + "0x54240520c050f0062b00542405254050e806200054240511405050062b405", + "0x1d01460018064240508c050b40601909014063f8062a0ac200ad1f412014a8", + "0x9b015090149b014bd0189b0150901406374062980542405018320180642405", + "0x9701509014862200c2fc0622005424050183701886015090149b2980c0d406", + "0x6000054240504805048062480542405018051dc0624c054240525c0510006", + "0x120150f01509014930143c0190e01509014950143a0190d015090141401414", + "0x11001509014060c80601909014fe014600180642405018fe0190f4390d00092", + "0x644805424054451003035019110150901511014bd01911015090140617806", + "0x770191501509015140144001914015090151244c0c2fc0644c054240501837", + "0x50e80643005424053ec050500645c05424050600504806458054240501805", + "0x10901406030064651843117458120151901509015150143c019180150901495", + "0x95014200180642405018fe018180500c568123f80c4240c014060309501806", + "0x1e01427018220780c42405074052a80607405424053ec0508c063ec0542405", + "0x1090142301427018aa08c0c42405080052a8060800542405018b10180642405", + "0x270150901427014b3018b101509014aa0142a0182701509014220142a01806", + "0x601909014063f8060195b01909030b109c0c2d4063f805424053f80504806", + "0x2a03035018b301509014b3014bd018b301509014062f0060a8054240501832", + "0xba01440018ba01509014b50bc0c2fc060bc054240501837018b501509014b3", + "0x5030050e8062f4054240504805050062f005424053f805048060c80542405", + "0xca0180642405018fe018370d4bd2f0fe0143701509014320143c0183501509", + "0x15c0e84003109030bf048fe25441018bf01509014bf014cf018bf0150901406", + "0x6104054240533c053540633c0542405018d40180642405018fe018ca0f00c", + "0x3a01847015090143a0141401806424053500536406354d40310901441014d8", + "0xd93609542405124db11c952b4061240542405354051140636c054240503005", + "0x109014063f80612805574dc0150903045014d30184001509014400141201845", + "0x4f1340c4240537c051440637c05424053700519c0612c05424050183201806", + "0xcc0182d015090144b0144f01855015090144f014bd0180642405134051a406", + "0x61405903109014e0014590180642405150050b406150e0031090142d1540c", + "0x50b006378054240516c053780616c05424051400516c06019090145901450", + "0xd90143a0186001509014d8014140185e0150901440014120182c01509014de", + "0x601909014063f806188dd1805e3f80518805424050b0050f0063740542405", + "0x3a0186701509014d801414018d3015090144001412018da015090144a01440", + "0x109014063f8061a45119cd33f8051a40542405368050f006144054240536405", + "0x35018cd01509014cd014bd018cd01509014061780633005424050183201806", + "0x40018c3015090146b3180c2fc063180542405018370186b01509014cd3300c", + "0x50e8062f8054240532805050061c005424050f005048061b8054240530c05", + "0x642405018fe018bb1c8be1c0fe014bb015090146e0143c01872015090140c", + "0x75014bd018750150901406178062e405424050183201806424052540518006", + "0x772d80c2fc062d80542405018370187701509014752e40c0d4061d40542405", + "0x506005050061e8054240505005048062e005424052d005100062d00542405", + "0x832c0b21e8fe0148301509014b80143c018b0015090140c0143a018b201509", + "0x109014063f806060140315e048fe03109030050180c25406019090140603006", + "0x5424053f80504806074fb031090141e0146b0181e01509014950141801806", + "0x5424053ec050800601909014063f8060800557c22015090301d014c6018fe", + "0x64240509c0509c062c42703109014aa014aa018aa01509014230142301823", + "0x2a01806424052cc0509c062d4b3031090142a014aa0182a01509014062c406", + "0xc2d4060bc05424050bc052cc062e805424052d4050a8060bc05424052c405", + "0x109014060c8060190901422014690180642405018fe01806580064240c2e82f", + "0x5424052f03203035018bc01509014bc014bd018bc01509014062f0060c805", + "0xbf0150901437014400183701509014bd0d40c2fc060d4054240501837018bd", + "0x60f00542405030050e8060e80542405048050500610005424053f80504806", + "0x542405018ca0180642405018fe018ca0f03a100fe014ca01509014bf0143c", + "0x6360d5031613504103109030cf048fe25441018cf01509014cf014cf018cf", + "0x53500505006114054240536405354063640542405018d40180642405018fe", + "0x10901422014bd0184b0150901445014450184a015090140c0143a018dc01509", + "0xac018410150901441014120184936c4725509014df12c4a370fe2000637c05", + "0x60c806019090144d014a80180642405018fe0184f01562134054240c12405", + "0x51540516c06019090145401450018551500c4240538005164063800542405", + "0x10901441014120185001509014590142c01859015090142d014de0182d01509", + "0x542405140050f0060b0054240536c050e806378054240511c050500616c05", + "0x410141201860015090144f014400180642405018fe0185e0b0de16cfe0145e", + "0x5180050f006368054240536c050e806188054240511c05050063740542405", + "0x60c8060190901422014690180642405018fe018d336862374fe014d301509", + "0x51446703035018510150901451014bd0185101509014061780619c0542405", + "0x109014cd01440018cd01509014693300c2fc063300542405018370186901509", + "0x542405030050e80630c05424053600505006318054240535405048061ac05", + "0x200142d0180642405018fe018701b8c3318fe01470015090146b0143c0186e", + "0x61c80542405018dd018be01509014060c80601909014fb014600180642405", + "0xbf018b901509014060dc062ec05424051c8be03035018720150901472014bd", + "0x14018b601509014fe01412018770150901475014400187501509014bb2e40c", + "0xb63f8051e805424051dc050f0062e00542405030050e8062d0054240504805", + "0x5e018b201509014060c8060190901495014600180642405018fe0187a2e0b4", + "0x60dc0620c05424052c0b203035018b001509014b0014bd018b00150901406", + "0x14014120188001509014ad01440018ad01509014831f40c2fc061f40542405", + "0x5200050f0062980542405030050e8062a0054240506005050062b00542405", + "0x123f80c4240c014060309501806424050180c0189b298a82b0fe0149b01509", + "0x5424053ec0508c063ec0542405254050800601909014063f8060601403163", + "0x60800542405018b101806424050780509c060881e031090141d014aa0181d", + "0x2a0182701509014220142a018064240508c0509c062a8230310901420014aa", + "0xc2d4063f805424053f8050480609c054240509c052cc062c405424052a805", + "0x109014062f0060a80542405018320180642405018fe01806590064240c2c427", + "0x54240501837018b501509014b30a80c0d4062cc05424052cc052f4062cc05", + "0x5424053f805048060c805424052e805100062e805424052d42f030bf0182f", + "0x3701509014320143c01835015090140c0143a018bd015090141201414018bc", + "0x109014bf014cf018bf01509014063280601909014063f8060dc352f4bc3f805", + "0xd40180642405018fe018ca0f00c5943a1000c4240c2fc123f895104062fc05", + "0x536406354d40310901441014d80184101509014cf014d5018cf0150901406", + "0x5354051140636c0542405030050e80611c05424050e8050500601909014d4", + "0xd30184001509014400141201845364d8255090144936c47254a60184901509", + "0x519c0612c0542405018320180642405018fe0184a01566370054240c11405", + "0x4f014bd0180642405134051a40613c4d03109014df01451018df01509014dc", + "0x50b406150e0031090142d1540c330060b4054240512c0513c061540542405", + "0x51400516c06019090145901450018501640c4240538005164060190901454", + "0x10901440014120182c01509014de0142c018de015090145b014de0185b01509", + "0x5424050b0050f0063740542405364050e8061800542405360050500617805", + "0x4001412018da015090144a014400180642405018fe0186237460178fe01462", + "0x5368050f0061440542405364050e80619c0542405360050500634c0542405", + "0x6178063300542405018320180642405018fe018691446734cfe0146901509", + "0x5018370186b01509014cd3300c0d4063340542405334052f4063340542405", + "0x50f005048061b8054240530c051000630c05424051acc6030bf018c601509", + "0x1090146e0143c01872015090140c0143a018be01509014ca014140187001509", + "0x5018320180642405254051800601909014063f8062ec722f8703f8052ec05", + "0x109014752e40c0d4061d405424051d4052f4061d405424050185e018b901509", + "0x5424052d005100062d005424051dcb6030bf018b601509014060dc061dc05", + "0xb0015090140c0143a018b20150901418014140187a015090141401412018b8", + "0x50180c2540601909014060300620cb02c87a3f80520c05424052e0050f006", + "0x6b0181e0150901495014180180642405018fe018180500c59c123f80c4240c", + "0x55a022015090301d014c6018fe01509014fe014120181d3ec0c4240507805", + "0xaa018aa0150901423014230182301509014fb014200180642405018fe01820", + "0x2a014aa0182a01509014062c406019090142701427018b109c0c424052a805", + "0x52d4050a8060bc05424052c4050a80601909014b301427018b52cc0c42405", + "0x5018fe018065a4064240c2e82f030b50182f015090142f014b3018ba01509", + "0xbd018bc01509014062f0060c80542405018320180642405088051a40601909", + "0xc2fc060d4054240501837018bd01509014bc0c80c0d4062f005424052f005", + "0x50500610005424053f805048062fc05424050dc05100060dc05424052f435", + "0x3a100fe014ca01509014bf0143c0183c015090140c0143a0183a0150901412", + "0x41018cf01509014cf014cf018cf01509014063280601909014063f8063283c", + "0x542405018d40180642405018fe018d83540c5a8d41040c4240c33c123f895", + "0x4a015090140c0143a018dc01509014d4014140184501509014d9014d5018d9", + "0x109014df12c4a370fe26c0637c0542405088052f40612c05424051140511406", + "0xfe0184f0156b134054240c124052b00610405424051040504806124db11c95", + "0xc4240538005164063800542405018320180642405134052a0060190901406", + "0x59015090142d014de0182d01509014550145b0180642405150051400615454", + "0x6378054240511c050500616c054240510405048061400542405164050b006", + "0x5018fe0185e0b0de16cfe0145e01509014500143c0182c01509014db0143a", + "0x54240511c050500637405424051040504806180054240513c051000601909", + "0xfe018d336862374fe014d301509014600143c018da01509014db0143a01862", + "0x5101509014061780619c0542405018320180642405088051a4060190901406", + "0x633005424050183701869015090145119c0c0d4061440542405144052f406", + "0x6318054240535405048061ac0542405334051000633405424051a4cc030bf", + "0xfe01470015090146b0143c0186e015090140c0143a018c301509014d801414", + "0x601909014fb014600180642405080050b40601909014063f8061c06e30cc6", + "0xbe03035018720150901472014bd018720150901406374062f8054240501832", + "0x75014400187501509014bb2e40c2fc062e4054240501837018bb0150901472", + "0x5030050e8062d0054240504805050062d805424053f805048061dc0542405", + "0x600180642405018fe0187a2e0b42d8fe0147a01509014770143c018b801509", + "0x109014b0014bd018b00150901406178062c8054240501832018064240525405", + "0x109014831f40c2fc061f40542405018370188301509014b02c80c0d4062c005", + "0x54240506005050062b00542405050050480620005424052b405100062b405", + "0xc0189b298a82b0fe0149b01509014800143c018a6015090140c0143a018a8", + "0x601909014063f8063ec180316c05012031090300c0180c254060190901406", + "0x6048054240504805048060781d03109014220146b0182201509014fe01418", + "0x180180642405080051a40601909014063f80608c055b420015090301e014c6", + "0x55b82a0150903027014c6018272a80c424052c4051ac062c4054240507405", + "0x51ac062e805424052a80506006019090142a014690180642405018fe018b3", + "0x690180642405018fe018bc0156f0c8054240c0bc05318060bcb503109014ba", + "0x35014aa0183501509014bd01423018bd01509014b50142001806424050c805", + "0x10901440014aa0184001509014062c406019090143701427018bf0dc0c42405", + "0x5424050f0050a80632805424052fc050a806019090143a014270183c0e80c", + "0x642405018fe018065c0064240c33cca030b5018ca01509014ca014b3018cf", + "0xc0d4063500542405350052f4063500542405018bc0184101509014060c806", + "0x5100063640542405354d8030bf018d801509014060dc06354054240535041", + "0x1401414018db015090140501462018470150901412014120184501509014d9", + "0x4936c47048051280542405114050f0063700542405254050e8061240542405", + "0x410184b015090144b014cf0184b01509014063280601909014063f806128dc", + "0x542405018d40180642405018fe018e013c0c5c44d37c0c4240c12c1404895", + "0x6424050b405364061642d0310901455014d8018550150901454014d501854", + "0x61880542405134050500637405424050140518806180054240537c0504806", + "0x109014d33686237460048da018d3015090145901445018da01509014950143a", + "0x320180642405018fe018510157219c054240c1780534c061782c3785b14012", + "0x51a4061accd03109014cc01451018cc015090146701467018690150901406", + "0x701b80c330061c005424051a40513c061b805424051ac052f40601909014cd", + "0xbe01450018722f80c42405318051640601909014c30142d018c33180c42405", + "0x109014b90142c018b901509014bb014de018bb01509014720145b0180642405", + "0x54240537805050062d8054240516c05188061dc054240514005048061d405", + "0x61e8b82d0b61dc120147a01509014750143c018b8015090142c0143a018b4", + "0x5b01462018b0015090145001412018b20150901451014400180642405018fe", + "0x52c8050f0062b405424050b0050e8061f40542405378050500620c0542405", + "0x5e018ac01509014060c80601909014063f806200ad1f4832c0120148001509", + "0x60dc0629805424052a0ac03035018a801509014a8014bd018a80150901406", + "0x4f01412018880150901486014400188601509014a626c0c2fc0626c0542405", + "0x5254050e8062480542405380050500624c0542405014051880625c0542405", + "0x601909014063f806434002489325c120150d01509014880143c0180001509", + "0x109014062180643805424050183201806424052d4051800601909014bc0142d", + "0x5424050183701910015090150f4380c0d40643c054240543c052f40643c05", + "0x542405048050480644c05424054480510006448054240544111030bf01911", + "0x11701509014950143a019160150901414014140191501509014050146201914", + "0xb30142d0180642405018fe0190c45d164551404805430054240544c050f006", + "0x64640542405018b90191801509014060c80601909014aa014600180642405", + "0xbf0191b01509014060dc0646805424054651803035019190150901519014bd", + "0x620191e0150901412014120191d015090151c014400191c015090151a46c0c", + "0x50f0064840542405254050e8064800542405050050500647c054240501405", + "0x64240508c050b40601909014063f806489214811f4781201522015090151d", + "0x124014bd0192401509014063740648c05424050183201806424050740518006", + "0x1254980c2fc0649805424050183701925015090152448c0c0d4064900542405", + "0x501405188064a00542405048050480649c054240542c051000642c0542405", + "0x109015270143c0193801509014950143a019370150901414014140193601509", + "0x60c80601909014fe014600180642405018fe019394e1374d928048054e405", + "0x54293a030350190a015090150a014bd0190a0150901406178064e80542405", + "0x1090153d014400193d015090153b4f00c2fc064f00542405018370193b01509", + "0x5424053ec0505006500054240501405188064fc054240506005048064f805", + "0x650d42505404fc1201543015090153e0143c0194201509014950143a01941", + "0x642405018fe018fb0600c5cc140480c4240c030050309501806424050180c", + "0x120150901412014120181e0740c42405088051ac0608805424053f80506006", + "0xaa015090141d014200180642405018fe0182301574080054240c0780531806", + "0x601909014b1014270182a2c40c4240509c052a80609c05424052a80508c06", + "0x50a80601909014b5014270182f2d40c424052cc052a8062cc0542405018b1", + "0xba030b5018ba01509014ba014b301832015090142f0142a018ba015090142a", + "0x542405018320180642405080051a40601909014063f806019750190903032", + "0x3501509014bd2f00c0d4062f405424052f4052f4062f40542405018bc018bc", + "0x610005424052fc05100062fc05424050d437030bf0183701509014060dc06", + "0x3a018ca0150901414014140183c0150901412014120183a015090140601477", + "0x5018fe0184133cca0f03a048051040542405100050f00633c054240525405", + "0x109030d40501225441018d401509014d4014cf018d401509014063280601909", + "0x511c053540611c0542405018d40180642405018fe018453640c5d8d83540c", + "0x10901406014770184f01509014d8014140184d01509014d501412018db01509", + "0x542405080052f406154054240536c05114061500542405254050e80638005", + "0x54240c37c052b00637c4b128dc12412424050b455150e013c4d050880182d", + "0x616c0542405018320180642405164052a00601909014063f806140055dc59", + "0xde0185e015090142c0145b018064240537805140060b0de031090145b01459", + "0x5048061880542405128051dc063740542405180050b006180054240517805", + "0xdd0143c01867015090144b0143a018d301509014dc01414018da0150901449", + "0x690150901450014400180642405018fe0185119cd336862048051440542405", + "0x61ac05424053700505006334054240512405048063300542405128051dc06", + "0x63f80630cc61accd33012014c301509014690143c018c6015090144b0143a", + "0x61c005424050185e0186e01509014060c8060190901420014690180642405", + "0xbf0187201509014060dc062f805424051c06e03035018700150901470014bd", + "0x1201875015090140601477018b901509014bb01440018bb01509014be1c80c", + "0x50f0062d00542405254050e8062d8054240511405050061dc054240536405", + "0x64240508c050b40601909014063f8062e0b42d8771d412014b801509014b9", + "0xb2014bd018b20150901406374061e805424050183201806424050740518006", + "0xb020c0c2fc0620c054240501837018b001509014b21e80c0d4062c80542405", + "0x504805048062000542405018051dc062b405424051f405100061f40542405", + "0x109014ad0143c018a601509014950143a018a8015090141401414018ac01509", + "0x60c80601909014fe014600180642405018fe0189b298a82b0800480526c05", + "0x52208603035018880150901488014bd018880150901406178062180542405", + "0x109014920144001892015090149724c0c2fc0624c0542405018370189701509", + "0x5424053ec0505006438054240506005048064340542405018051dc0600005", + "0x64451043d0e434120151101509014000143c0191001509014950143a0190f", + "0x1401578048fe03109030950149301895015090140c01420018064240501897", + "0x5434063ec05424053f805000060600542405048052480601909014063f806", + "0x607805424050190f0180642405018fe018065e4050190e0181d0150901418", + "0x5b0181d01509014220150d018fb01509014140140001822015090141e01510", + "0xaa0157a08c054240c07405444060800542405080050600608005424053ec05", + "0x2701514018b1015090140644c0609c054240508c054480601909014063f806", + "0x508005060060c8054240501405050062e8054240501805048060a80542405", + "0xbc0c8ba0491501835015090142a014bd018bd01509014b101447018bc01509", + "0x642405018fe018bf0157b0dc054240c0bc05074060bcb52cc95424050d4bd", + "0x5424050f00545c060f005424050e840031160183a1000c424050dc0507806", + "0xd401509014ca0150c0184101509014b501414018cf01509014b301412018ca", + "0x109014b301412018d501509014bf015180180642405018fe018d4104cf25405", + "0xfe01845364d8254051140542405354054300636405424052d4050500636005", + "0x54240511c054640611c05424050190f01806424052a8050b4060190901406", + "0x542405018050480637005424051240545c06124054240536c2003116018db", + "0x625c0637c4b12895014df01509014dc0150c0184b0150901405014140184a", + "0x542405030050e8063ec054240501405050060190901495014d90180642405", + "0xfe018220157c078054240c0600546c06060140489542405074fb0311a0181d", + "0x508c051440608c05424050800547406080054240507805470060190901406", + "0xc424052c405144062c405424050191e01806424052a8051a40609caa03109", + "0x2f01509014b301514018b501509014270151401806424050a8051a4062cc2a", + "0x17d01909030ba01520018ba01509014ba014bd018ba015090142f2d40c47c06", + "0x62fc0542405050050e8060dc0542405048050500601909014063f8060c805", + "0x17e100054240c0d40548c060190901406488060d4bd2f095424052fc3703121", + "0x632805424050f005494060f00542405100054900601909014063f8060e805", + "0x53500549c0601909014410150b01845364d8354d4104cf06109014ca01526", + "0x690180642405364051a40601909014d8014690180642405354051800601909", + "0x49014510184901509014064a00636c4703109014cf01451018064240511405", + "0x512c051440612c054240536c054500601909014dc014690184a3700c42405", + "0x1090144f014510184f015090144a01514018064240537c051a406134df03109", + "0x54240515005450061540542405134054500601909014e001469018543800c", + "0x542405164052f40616405424050b4550311f018550150901455014bd0182d", + "0x642405018fe018500157f019090305901520018470150901447014bd01859", + "0x10901450015360180642405018fe01806600050190e018064240511c051a406", + "0x60b0054240501937018064240516c051a4063785b03109014470145101806", + "0x114018dd01509014de015140180642405178051a4061805e031090142c01451", + "0x120018da01509014da014bd018da01509014623740c47c06188054240518005", + "0x50180504806019090140625c0601909014063f80634c05604064240c36805", + "0x109014fe01447018c601509014bd0143a0186b01509014bc01414018cd01509", + "0x1821b8054240c330053700633069144673f909014c33186b334fe4e00630c05", + "0x61c805424052f8054e4062f805424051b8051280601909014063f8061c005", + "0x3a01875015090145101414018b9015090146701412018bb01509014720153a", + "0x109014063f8062d8771d4b93f8052d805424052ec05428061dc05424051a405", + "0x7a015090145101414018b8015090146701412018b401509014700153b01806", + "0x63f8062c0b21e8b83f8052c005424052d005428062c805424051a4050e806", + "0x3201806424053f8052e80601909014d3015360180642405018970180642405", + "0x7d20c0c0d4061f405424051f4052f4061f405424050193c018830150901406", + "0x52b0054ec062b005424052b480030bf0188001509014060dc062b40542405", + "0x109014bd0143a0189b01509014bc01414018a6015090140601412018a801509", + "0x625c0601909014063f8062208626ca63f80522005424052a0054280621805", + "0x542405018050480625c05424050e8054ec0601909014fe014ba0180642405", + "0x10d01509014970150a0180001509014bd0143a0189201509014bc0141401893", + "0x109014fe014ba01806424050c8054d80601909014063f80643400248933f805", + "0x350190f015090150f014bd0190f01509014064f40643805424050183201806", + "0x13b0191201509015104440c2fc0644405424050183701910015090150f4380c", + "0x50e806454054240504805050064500542405018050480644c054240544805", + "0x642405018fe0191745915450fe0151701509015130150a019160150901414", + "0x14019180150901406014120190c01509014220153b01806424053f8052e806", + "0x1183f80546c054240543005428064680542405050050e806464054240504805", + "0x542405048054fc060480c031090140c0153e0180642405018970191b46919", + "0x1e0150901418014b301806424050500509c060601403109014fe014aa018fe", + "0x642405074050b406074fb03109014220780c5000608805424052540513c06", + "0x60a8054240501405050062c40542405018050480608005424050300550406", + "0x95424052d4b30a8b13f943018b501509014fb0144f018b3015090142001542", + "0x50bc051540601909014063f8062e80560c2f015090302701454018272a823", + "0x109014bd0c80c610062f405424050190f01806424052f0050b4062f03203109", + "0x5424052a805050062fc054240508c05048060dc05424050d405614060d405", + "0x52e80561c0601909014063f8060e8402fc950143a01509014370158601840", + "0x1090143c01586018cf01509014aa01414018ca0150901423014120183c01509", + "0x1210181d01509014950143a018fb015090140c014140184133cca2540510405", + "0x109014063f806088056201e0150903018015230181805012255090141d3ec0c", + "0xaa0610901423015260182301509014200152501820015090141e0152401806", + "0x52c40549c0601909014270150b01806424052a8051a4060bcb52cc2a2c427", + "0x60dc05424050180504806019090142f0146901806424052d4051a40601909", + "0x450183a01509014140143a01840015090141201414018bf015090140501462", + "0x186240633c05424050a8050600632805424052cc052f4060f005424053f805", + "0x5628410150903035014b4018352f4bc0c8ba04909014cf3283c0e8402fc37", + "0x5630d801509030d50158b018d50150901441014b80180642405018fe018d4", + "0x50198d0184501509014060c80601909014d80142d0180642405018fe018d9", + "0x109014060dc0636c054240511c4503035018470150901447014bd0184701509", + "0x109014ba014120184a01509014dc0158e018dc01509014db1240c2fc0612405", + "0x5424052f4050e80613405424052f0050500637c05424050c8051880612c05", + "0x50b40601909014063f8063804f134df12c12014e0015090144a0158f0184f", + "0x1090145501592018550150901454015910185401509014066400601909014d9", + "0x5424052f0050500614005424050c8051880616405424052e805048060b405", + "0x60b0de16c50164120142c015090142d0158f018de01509014bd0143a0185b", + "0x32014620186001509014ba014120185e01509014d40158e0180642405018fe", + "0x51780563c0636805424052f4050e80618805424052f005050063740542405", + "0x18e01806424053f8053640601909014063f80634cda188dd18012014d301509", + "0x5050061a4054240501405188061440542405018050480619c054240508805", + "0x69144120146b01509014670158f018cd01509014140143a018cc0150901412", + "0x1090140643c06254054240503005030350180c0150901406015140186b334cc", + "0x508006050120300505005424053f80564c0604805424052540513c063f805", + "0x920180642405018fe018fe015942540c031090300501493018050150901406", + "0x6438060600542405048054340605005424050300500006048054240525405", + "0x607405424053ec05440063ec05424050190f0180642405018fe0180665405", + "0x180181e01509014140145b01818015090141d0150d0181401509014fe01400", + "0x1120180642405018fe0182001596088054240c0600544406078054240507805", + "0x50600609c05424052a80565c062a8054240508c054500608c054240508805", + "0x2d0180642405018fe0182a2c40c0142a015090142701598018b1015090141e", + "0x507805060062d405424052cc05664062cc05424050190f018064240508005", + "0xc01420018064240501897018ba0bc0c014ba01509014b5015980182f01509", + "0x52480601909014063f80605005668123f80c4240c2540524c062540542405", + "0x50190e0181d01509014180150d018fb01509014fe01400018180150901412", + "0x1822015090141e015100181e015090140643c0601909014063f8060199b", + "0x50600608005424053ec0516c06074054240508805434063ec054240505005", + "0x54480601909014063f8062a80567023015090301d01511018200150901420", + "0x501805048060a8054240509c05450062c4054240501832018270150901423", + "0x109014b10144f018bc01509014200141801832015090140501414018ba01509", + "0x60bcb52cc95424050d4bd2f0322e812674060d405424050a8052f4062f405", + "0x3a1000c424050dc052f80601909014063f8062fc0567837015090302f01470", + "0xcf01509014b301412018ca015090143c015a00183c015090143a1000c67c06", + "0x5018fe018d4104cf254053500542405328056840610405424052d40505006", + "0x5424052d4050500636005424052cc050480635405424052fc056880601909", + "0x52a8050b40601909014063f806114d9360950144501509014d5015a1018d9", + "0x54240536c200319f018db0150901447015a301847015090140643c0601909", + "0x4b0150901405014140184a015090140601412018dc0150901449015a001849", + "0x5140063ec18031090141401459018df12c4a2540537c05424053700568406", + "0x5014051880609c0542405018050480607405424053ec0516c060190901418", + "0x109014fe01445018b301509014950143a0182a015090140c01414018b101509", + "0xb30a8b109c18624062e8054240507405060060bc0542405048052f4062d405", + "0x63f8062f0056903201509030aa014b4018aa08c200881e04909014ba0bcb5", + "0x63f8060dc056943501509030bd0158b018bd0150901432014b80180642405", + "0x4001509014bf014bd018bf01509014064780601909014350142d0180642405", + "0x5424050199001806424050dc050b40601909014063f806019a60140643806", + "0xca015090143c015920183c01509014400159101840015090143a014bd0183a", + "0x6350054240508005050061040542405088051880633c05424050780504806", + "0x63f806360d53504133c12014d801509014ca0158f018d501509014230143a", + "0x109014220146201845015090141e01412018d901509014bc0158e0180642405", + "0x5424053640563c06124054240508c050e80636c0542405080050500611c05", + "0x56a0060500542405019a701806424053f805364063704936c4711412014dc", + "0x60141201806424053ec056a806074fb0310901418015a9018180150901414", + "0x5254050e8060a80542405030051dc062c40542405014050500609c0542405", + "0x2a2c427051ac0182f0150901412014bd018b5015090141d015ab018b301509", + "0x63f8060c8056b4ba01509030aa014b4018aa08c200881e049090142f2d4b3", + "0x109014bd015af018bd01509014bc015ae018bc01509014ba014b80180642405", + "0x542405080051dc062fc054240508805050060dc054240507805048060d405", + "0x60f03a100bf0dc120143c0150901435015b00183a01509014230143a01840", + "0x2201414018cf015090141e01412018ca0150901432015b10180642405018fe", + "0x5328056c006354054240508c050e8063500542405080051dc061040542405", + "0x54240c0300562c060300542405018056c806360d53504133c12014d801509", + "0x604805424050191e0180642405254050b40601909014063f8063f8056cc95", + "0x109014fe0142d0180642405018fe018066d0050190e018140150901412014bd", + "0x1d3ec0c4240505005144060500542405060052f40606005424050192801806", + "0xcc0182301509014050144f01820015090141d0151401806424053ec051a406", + "0x513c062a805424050190f0180642405088050b4060881e03109014230800c", + "0x601909014fe014d9018b109c0c014b101509014aa0159301827015090141e", + "0x1aa0181d3ec0c42405060056a4060600542405050056a0060500542405019a7", + "0xc01477018b10150901405014140182701509014060141201806424053ec05", + "0x5048052f4062d40542405074056ac062cc0542405254050e8060a80542405", + "0xc2a8052d0062a8230802207812424050bcb52cc2a2c427051ac0182f01509", + "0x52f0056b8062f005424052e8052e00601909014063f8060c8056d4ba01509", + "0x109014220141401837015090141e014120183501509014bd015af018bd01509", + "0x5424050d4056c0060e8054240508c050e8061000542405080051dc062fc05", + "0x50480632805424050c8056c40601909014063f8060f03a100bf0dc120143c", + "0x230143a018d401509014200147701841015090142201414018cf015090141e", + "0x1090140c015b6018d8354d4104cf048053600542405328056c0063540542405", + "0x542405254056dc063ec0542405014050e8060600542405018050500625405", + "0x6088056e41e0150903014014d301814048fe255090141d3ec18255b80181d", + "0x23015920182301509014200159101820015090141e014670180642405018fe", + "0x52a80563c062c40542405048050e80609c05424053f805050062a80542405", + "0x5050062cc0542405088056380601909014063f8060a8b109c950142a01509", + "0x2f2d495014ba01509014b30158f0182f01509014120143a018b501509014fe", + "0x95424053ec18031ba018fb01509014050143a01818015090140601414018ba", + "0x5074056f40601909014063f806078056f01d0150903014015bb01814048fe", + "0x109014fe01414018230800c42405088056f8060880542405030056d80601909", + "0x52d4b30a8956e0062d4054240508c056dc062cc0542405048050e8060a805", + "0x519c0601909014063f8062e8056fc2f01509030b1014d3018b109caa25509", + "0xaa01414018bd0150901420014d5018bc0150901432015c001832015090142f", + "0x52f005704060f005424052f405114060e8054240509c050e8061000542405", + "0x1c333c054240c2fc052b0062fc370d495424053283c0e8403f9c2018ca01509", + "0x601909014d50142d018d53500c4240533c054b00601909014063f80610405", + "0xbd0184901509014d401445018db01509014370143a01847015090143501414", + "0x10903045014ac01845364d825509014dc124db11cfe71006370054240525405", + "0x5134050b406134df031090144a0152c0180642405018fe0184b015c512805", + "0x5424053800571c06380054240513cdf031c60184f015090140643c0601909", + "0x590150901454015c80182d01509014d90143a0185501509014d80141401854", + "0x109014d80141401850015090144b015c90180642405018fe018590b45525405", + "0xfe0182c3785b254050b0054240514005720063780542405364050e80616c05", + "0x10901435014140185e0150901441015c90180642405254051a4060190901406", + "0xfe0186237460254051880542405178057200637405424050dc050e80618005", + "0x5424052e805724060190901420015ca0180642405254051a4060190901406", + "0x5101509014da015c80186701509014270143a018d301509014aa01414018da", + "0x64240503005364060190901495014690180642405018fe0185119cd325405", + "0x63340542405048050e80633005424053f805050061a405424050780572406", + "0x501805050062540542405030056d8061accd330950146b0150901469015c8", + "0x1d3ec18255b80181d0150901495015b7018fb01509014050143a0181801509", + "0x670180642405018fe01822015cb078054240c0500534c06050123f89542405", + "0x5050062a8054240508c056480608c05424050800564406080054240507805", + "0xb109c950142a01509014aa0158f018b101509014120143a0182701509014fe", + "0x3a018b501509014fe01414018b301509014220158e0180642405018fe0182a", + "0x1090140601414018ba0bcb5254052e805424052cc0563c060bc054240504805", + "0x542405254052f406074054240503005114063ec0542405014050e80606005", + "0x20015cc088054240c050052b006050123f895424050781d3ec183f8800181e", + "0x643c0601909014aa0142d018aa08c0c42405088054b00601909014063f806", + "0xfe014140182a01509014b1015c7018b1015090142708c0c7180609c0542405", + "0x2f2d4b3254050bc05424050a805720062d40542405048050e8062cc0542405", + "0x50e8060c805424053f805050062e80542405080057240601909014063f806", + "0x54240501805048062f4bc0c895014bd01509014ba015c8018bc0150901412", + "0xaa01509014950143a01823015090140c014770182001509014050141401822", + "0xb109caa08c2008814734062c40542405048052f40609c05424053f80511406", + "0x642405018fe018b3015ce0a8054240c078052b0060781d3ec180501242405", + "0x1c6018ba015090140643c06019090142f0142d0182f2d40c424050a8054b006", + "0x14018bd015090141401412018bc0150901432015c70183201509014ba2d40c", + "0x5720062fc0542405074050e8060dc05424053ec051dc060d4054240506005", + "0x5424052cc057240601909014063f806100bf0dc352f4120144001509014bc", + "0xcf01509014fb01477018ca0150901418014140183c0150901414014120183a", + "0x97018d4104cf3283c0480535005424050e805720061040542405074050e806", + "0x120140625441018120150901412014cf018120150901406328060190901406", + "0x6078fe03109014fe015d00180642405018fe0181d3ec0c73c180500c4240c", + "0x690180642405018fe01822015d1019090301e0152001814015090141401412", + "0x545c0608c05424050800c03116018200150901495015d201806424053f805", + "0xaa0150c018b101509014180141401827015090141401412018aa0150901423", + "0x5048060190901422015360180642405018fe0182a2c427254050a80542405", + "0xba255d3018bc015090140c0141801832015090141801414018ba0150901414", + "0x642405018fe01835015d52f4054240c0bc05750060bcb52cc95424052f032", + "0x109014063f8060e8057604001509030bf015d7018bf0dc0c424052f40575806", + "0x542405328fe0311f018ca01509014064a0060f0054240510095031d901806", + "0x45015090143701418018d901509014b501414018d801509014b301412018cf", + "0x536c47114d9360124540636c054240533c052f40611c05424050f00511c06", + "0x50780601909014063f806370057684901509030d50141d018d53504125509", + "0x120184d01509014df01517018df015090144b1280c4580612c4a0310901449", + "0x4f25405150054240513405430063800542405350050500613c054240510405", + "0x60b4054240510405048061540542405370054600601909014063f806150e0", + "0x109014063f806140590b4950145001509014550150c0185901509014d401414", + "0x1160185b015090143a015190180642405254052e80601909014fe0146901806", + "0x140185e01509014b3014120182c01509014de01517018de015090145b0dc0c", + "0x642405018fe018dd1805e2540537405424050b0054300618005424052d405", + "0x50480618805424050d405460060190901495014ba01806424053f8051a406", + "0xd3368950146701509014620150c018d301509014b501414018da01509014b3", + "0xc014600180642405254052e80601909014fe014690180642405018fe01867", + "0x690150901469014bd018690150901406178061440542405018320180642405", + "0x6b01509014cc3340c2fc06334054240501837018cc01509014691440c0d406", + "0x61b80542405074050500630c05424053ec050480631805424051ac0546006", + "0x5014050e806048054240501805050061c06e30c950147001509014c60150c", + "0xfb015dd060054240c3f805770063f895030954240505012031db0181401509", + "0x57800607805424050740577c060740542405060057780601909014063f806", + "0x10b018064240508005788060190901422015e1018272a82308022049090141e", + "0x52c405790062c4054240508c0578c0601909014270146901806424052a805", + "0x1090142a015e5018b501509014950143a018b3015090140c014140182a01509", + "0xc01414018ba01509014fb015e60180642405018fe0182f2d4b3254050bc05", + "0xbd2f032254052f405424052e805794062f00542405254050e8060c80542405", + "0xc25509014140480c76c060500542405014050e80604805424050180505006", + "0x10901418015de0180642405018fe018fb015e7060054240c3f805770063f895", + "0x57840609caa08c200881242405078057800607805424050740577c0607405", + "0x64240509c051a40601909014aa0150b018064240508c0542c060190901422", + "0x62cc054240503005050060a805424052c4057a4062c40542405080057a006", + "0x109014063f8060bcb52cc950142f015090142a015ea018b501509014950143a", + "0xbc01509014950143a01832015090140c01414018ba01509014fb015eb01806", + "0x542405019ec018064240501897018bd2f032254052f405424052e8057a806", + "0x22015090140c0143a0181e0150901405014140181d015090140601412018fe", + "0x508c200881e074127b80608c05424053f8057b40608005424052540511c06", + "0x1f10180642405018fe01827015f02a8054240c3ec057bc063ec18050123f909", + "0x54e40601909014b30142d01806424052c4052e8062cc2a2c495424052a805", + "0x1401414018ba0150901412014120182f01509014b50153a018b5015090142a", + "0xbc0c8ba3f8052f405424050bc05428062f00542405060050e8060c80542405", + "0x14018370150901412014120183501509014270153b0180642405018fe018bd", + "0x373f8050e805424050d405428061000542405060050e8062fc054240505005", + "0x109014950145101895015090140c015f20180c01509014060142a0183a100bf", + "0x5424050140513c063ec0542405048052f40601909014fe01469018123f80c", + "0x1e015090140643c0601909014180142d018180500c42405074fb030cc0181d", + "0x109014064b806080220300508005424050780564c0608805424050500513c06", + "0x41018140150901414014cf0181401509014063280601909014060140604805", + "0x1090140c015f40180642405018fe0181e0740c7ccfb0600c4240c0500501895", + "0x63f8062a8057d8230800c4240c088057d4060600542405060050480608805", + "0x10901427015f8018fe01509014200144d018270150901423015f70180642405", + "0x2a015fa0182a015090140643c0601909014063f806019f901406438062c405", + "0xfe0480c7ec062c405424052cc057e0063f805424052a805134062cc0542405", + "0x5018970180642405018fe0182f015fd2d4054240c2c4057f0063f80542405", + "0x5424053ec05050060d4054240506005048062e805424052d4054b40601909", + "0x5100bf0dc353f9fe0184001509014950144f018bf01509014ba0141801837", + "0x55040601909014063f8060f0057fc3a01509030bd01454018bd2f03225509", + "0x32014120180642405104050b406104cf031090143a01455018ca01509014fe", + "0x533c0513c0611c0542405328055080611405424052f005050063640542405", + "0x200124054240c3600515006360d5350954240536c47114d93f943018db01509", + "0x6019090144b0142d0184b1280c42405124051540601909014063f80637005", + "0x10e0184f015090144a0144f0184d01509014d501414018df01509014d401412", + "0x542405350050480638005424053700561c0601909014063f80601a0101406", + "0x63f8060b455150950142d01509014e0015860185501509014d50141401854", + "0x5424050c8050480616405424050f00561c0601909014fe016020180642405", + "0x63f8063785b14095014de0150901459015860185b01509014bc0141401850", + "0x1201806424053f80580806019090142f0142d0180642405018970180642405", + "0x643c0613c05424052540513c0613405424053ec050500637c054240506005", + "0xdf0141201860015090145e015850185e015090142c13c0c610060b00542405", + "0xda188dd2540536805424051800561806188054240513405050063740542405", + "0x109014950145001806424050480580c06019090140625c0601909014063f806", + "0x52f40619c05424050185e018d301509014060c806019090140c0160401806", + "0x69030bf0186901509014060dc06144054240519cd303035018670150901467", + "0x1e014140186b015090141d01412018cd01509014cc01587018cc0150901451", + "0x14031090141401605018c33186b2540530c054240533405618063180542405", + "0x1e031090141d014aa0181d01509014fb01423018fb01509014180142001818", + "0x62a8230310901420014aa01820015090140681806019090141e0142701822", + "0x52cc062c405424052a8050a80609c0542405088050a806019090142301427", + "0x14014600180642405018fe0180681c064240c2c427030b5018270150901427", + "0x60a805424050190f01806424053f805364060190901412014690180642405", + "0x140182f015090140501462018b5015090140601412018b3015090142a01608", + "0x6438062f005424052cc052c0060c80542405254050e8062e8054240503005", + "0x40015090140c01414018bd01509014fe015b60180642405018fe0180682405", + "0x95424050f03a100956e0060f005424052f4056dc060e80542405254050e806", + "0x109014062c40601909014063f80633c05828ca01509030bf014d3018bf0dc35", + "0x1090140601412018d501509014d401420018d40500c42405050058140610405", + "0x536c471149582c0636c0542405104052cc0611c0542405354050000611405", + "0x490160e0180642405018fe018dc0160d124054240c3640583006364d803109", + "0x1090141401420018df015090140683c0612c054240512805448061280542405", + "0x54240537c052cc06154054240513405000061500542405360050480613405", + "0xc380058300612c054240512c052f4063804f031090142d154542560b0182d", + "0x516c054480616c0542405164058380601909014063f806140058405901509", + "0x109014de015140185e015090144b015140182c01509014ca01467018de01509", + "0x542405048052f40619c0542405014051880634c054240513c050480618005", + "0xcd0150901460014bd018cc015090145e014bd01869015090142c014bd01851", + "0x62018b501509014dd01412018da188dd25509014cd330691446734c1484406", + "0x52c0060c805424050dc050e8062e805424050d405050060bc054240518805", + "0xb501412018c6015090146b015af0186b01509014bc015ae018bc01509014da", + "0x50c8050e8061c005424052e805050061b805424050bc051880630c0542405", + "0x601909014063f8061c8be1c06e30c120147201509014c6015b0018be01509", + "0x5140056c406019090141201469018064240512c051a40601909014ca01612", + "0x109014350141401875015090140501462018b9015090144f01412018bb01509", + "0xb42d8771d4b9048052d005424052ec056c0062d805424050dc050e8061dc05", + "0x505005180060190901412014690180642405328058480601909014063f806", + "0x54240501405188061e8054240536005048062e00542405370056c40601909", + "0x7d01509014b8015b00188301509014370143a018b0015090143501414018b2", + "0x5048051a4060190901414014600180642405018fe0187d20cb02c87a04805", + "0x5424050140518806200054240501805048062b4054240533c056c40601909", + "0x9b01509014ad015b0018a601509014370143a018a8015090143501414018ac", + "0x50480533c060480542405018ca0180642405018970189b298a82b08004805", + "0x601909014063f806074fb0321306014031090301201406254410181201509", + "0x5850064240c078054800605005424050500504806078fe03109014fe015d0", + "0xc67c060800542405254054ac0601909014fe014690180642405018fe01822", + "0x50500609c054240505005048062a8054240508c056800608c05424050800c", + "0x601909014063f8060a8b109c950142a01509014aa015a1018b10150901418", + "0xc6018b52cc0c424050bc051ac060bc05424050300506006019090142201536", + "0x62f005424052e895030350180642405018fe01832016152e8054240c2d405", + "0x140183a0150901414014120183501509014bd3f80c47c062f4054240501928", + "0x52f40633c05424052f00513c0632805424052cc05060060f0054240506005", + "0x1090304001470018402fc37255090144133cca0f03a0499d018410150901435", + "0xd93600c67c06364d803109014d4014be0180642405018fe018d50161635005", + "0x52fc050500636c05424050dc050480611c054240511405680061140542405", + "0x56880601909014063f8063704936c95014dc0150901447015a10184901509", + "0x4a015a1018df01509014bf014140184b0150901437014120184a01509014d5", + "0x51400601909014fe014690180642405018fe0184d37c4b254051340542405", + "0xe0015a0018e0015090144f2cc0c67c0613c05424050c80568c060190901495", + "0x515005684060b405424050600505006154054240505005048061500542405", + "0x950145001806424053f8051a40601909014063f8061642d154950145901509", + "0x616c05424050185e0185001509014060c806019090140c014600180642405", + "0xbf0182c01509014060dc06378054240516c50030350185b015090145b014bd", + "0x14018dd01509014fb0141201860015090145e015a20185e01509014de0b00c", + "0x54240501a17018da188dd2540536805424051800568406188054240507405", + "0x10901418014bd0181801509014143ec0c47c063ec120310901412015d001814", + "0x642405048051a40601909014063f80607405860064240c060054800606005", + "0x56b8060880542405078058640607805424050190f01806424053f8056a806", + "0x501414018aa015090140601412018230150901420015af018200150901422", + "0x508c056c0060a80542405254050e8062c40542405030051dc0609c0542405", + "0x21a0180642405074054d80601909014063f8062cc2a2c4272a812014b301509", + "0x51dc060dc054240501405050060d4054240501805048062d405424053f805", + "0x12014bd0183a01509014b50161b0184001509014950143a018bf015090140c", + "0xbd014b4018bd2f0322e82f049090143c0e8402fc370d414870060f00542405", + "0x41015ae0184101509014ca014b80180642405018fe018cf0161d328054240c", + "0x52e8050500636005424050bc05048063540542405350056bc063500542405", + "0x109014d5015b00184701509014bc0143a01845015090143201477018d901509", + "0x120184901509014cf015b10180642405018fe018db11c45364d80480536c05", + "0x50e80612c05424050c8051dc0612805424052e8050500637005424050bc05", + "0x50300572806134df12c4a370120144d0150901449015b0018df01509014bc", + "0x60480542405018b1018fe01509014950161f0189501509014068780601909", + "0x954240c3f812014063fa21018fe01509014fe01620018120150901412014b3", + "0x50500608005424053ec0588c0601909014063f8060881e07495888fb06014", + "0x50190e01827015090142001624018aa01509014180143a018230150901414", + "0x608c054240507405050062c40542405088058980601909014063f80601a25", + "0x228018b30150901427016270182701509014b101624018aa015090141e0143a", + "0x670180642405018fe0182f016292d4054240c0a80534c060a805424052cc05", + "0x5050062f005424050c805648060c805424052e805644062e805424052d405", + "0x352f4950143701509014bc0158f0183501509014aa0143a018bd0150901423", + "0x3a01840015090142301414018bf015090142f0158e0180642405018fe01837", + "0x10901406014140183c0e840254050f005424052fc0563c060e805424052a805", + "0xfe0151b018fe2540c25509014140480c468060500542405014050e80604805", + "0x950143a01820015090140c014140180642405018fe018fb0162a060054240c", + "0x58b0aa01509030220151b018220781d25509014230800c8ac0608c0542405", + "0x62cc2a03109014b10152a018b101509014aa0151c0180642405018fe01827", + "0x5470060bc05424052d405474062d405424052cc058b406019090142a0150b", + "0xbc0162d01806424050c80542c062f03203109014ba0152a018ba0150901418", + "0x3701469018bf0dc0c424050bc05144060d405424052f405474062f40542405", + "0x109014bf015140180642405100051a4060e8400310901435014510180642405", + "0x109014cf014bd018cf01509014ca0f00c47c0632805424050e805450060f005", + "0xd4015090140643c0601909014063f806104058b8064240c33c054800633c05", + "0x6364054240507405050063600542405354058c0063540542405350058bc06", + "0x109014063f80611c45364950144701509014d80163101845015090141e0143a", + "0x52f406124054240501a32018db01509014060c80601909014410153601806", + "0x4a030bf0184a01509014060dc063700542405124db03035018490150901449", + "0x1e0143a0184d015090141d01414018df015090144b016330184b01509014dc", + "0x2340180642405018fe018e013c4d25405380054240537c058c40613c0542405", + "0x1e0143a01855015090141d0141401854015090142701633018064240506005", + "0x2330180642405018fe018590b455254051640542405150058c4060b40542405", + "0x58c4063780542405254050e80616c0542405030050500614005424053ec05", + "0x542405048054a406048054240525405704060b0de16c950142c0150901450", + "0x6074fb03109014fe016350181801509014060c806050054240501832018fe", + "0x513c062a805424050500513c0608c0542405074058dc0601909014fb01636", + "0x601909014200142d018200881e25509014272a82325638018270150901418", + "0x59018b3015090142a0145b01806424052c405140060a8b1031090141e01459", + "0x5060062e805424050bc0516c0601909014b5014500182f2d40c4240508805", + "0xbc0c80c4240c2e8b3014063fa39018ba01509014ba01418018b301509014b3", + "0x5424052fc058ec062fc05424050190f0180642405018fe018370d4bd2563a", + "0xca01509014400163c0183c01509014bc0143a0183a01509014320141401840", + "0x52f4050500633c05424050dc058f80601909014063f80601a3d0140643806", + "0x109014ca0163f018ca01509014cf0163c0183c01509014350143a0183a01509", + "0x5018fe018d801641354054240c104056ec061040542405350059000635005", + "0x10901445015c70184501509014d90300c718063640542405354059080601909", + "0x54240511c057200612405424050f0050e80636c05424050e8050500611c05", + "0x109014d8015c90180642405030053640601909014063f8063704936c95014dc", + "0x542405128057200637c05424050f0050e80612c05424050e8050500612805", + "0x50e8063ec054240501805050063f80542405030056d806134df12c950144d", + "0x52f406088950310901495015d00181e01509014fe015b70181d0150901405", + "0x54240c06005910060601404895424050881e074fb3fa43018220150901422", + "0x109014270142d018272a80c42405080059180601909014063f80608c0591420", + "0xba0150901412014140182a01509014aa014d5018b101509014950164701806", + "0x62f405424052c405920062f005424050a805114060c80542405050050e806", + "0xfe018370164a0d4054240c0bc052b0060bcb52cc95424052f4bc0c8ba3fa49", + "0x1090140643c0601909014400142d018402fc0c424050d4054b0060190901406", + "0x109014b301414018ca015090143c015c70183c015090143a2fc0c718060e805", + "0xfe018d4104cf254053500542405328057200610405424052d4050e80633c05", + "0x52d4050e80636005424052cc050500635405424050dc05724060190901406", + "0x51a40601909014063f806114d9360950144501509014d5015c8018d901509", + "0x5050050e80636c0542405048050500611c054240508c05724060190901495", + "0x1a801814015090140669c063704936c95014dc0150901447015c80184901509", + "0x501414018aa015090140601412018fb015090140692c06060054240505005", + "0x5060056ac060a80542405254050e8062c40542405030051dc0609c0542405", + "0x1e07412424052d4b30a8b109caa0524c018b501509014fb014bd018b301509", + "0x50bc0593c0601909014063f8062e8059382f01509030230164d0182308022", + "0x5424053f805114060dc0542405080050e8060d40542405078050500601909", + "0x52b0062f4bc0c89542405100bf0dc353f9c4018400150901412014bd018bf", + "0x2d018cf3280c424050e8054b00601909014063f8060f0059403a01509030bd", + "0xd4015c7018d401509014413280c7180610405424050190f018064240533c05", + "0x5088051dc0636405424050c80505006360054240507405048063540542405", + "0x47114d936012014db01509014d5015c80184701509014bc0143a0184501509", + "0x14018dc015090141d0141201849015090143c015c90180642405018fe018db", + "0x57200637c05424052f0050e80612c0542405088051dc0612805424050c805", + "0x642405048051a40601909014063f806134df12c4a370120144d0150901449", + "0x14018e0015090141d014120184f01509014ba015c901806424053f80536406", + "0x5720060b40542405080050e8061540542405088051dc06150054240507805", + "0x54240501a51018fe0150901406334061642d154543801201459015090144f", + "0xc014180181e01509014060141201806424050189701806424050180501814", + "0x595012015090301d016530181d3ec1825509014220780c948060880542405", + "0x62a82303109014270146b0182701509014fb014180180642405018fe01820", + "0x642405018fe018b101656254054240c2a8053180604805424050481403255", + "0x60c8054240508c05060062e8054240501405050060bc05424050600504806", + "0xc2d4051c0062d4b30a895424050c8ba0bc951b8062540542405254fe030c3", + "0x3701472018370d40c424052f0052f80601909014063f8062f40595cbc01509", + "0x25a0183a01509014bf25412256590180642405018fe01840016582fc054240c", + "0x12018cf01509014ca0165c018ca015090143c0d40c96c060f005424050e805", + "0x4125405354054240533c059740635005424052cc050500610405424050a805", + "0x59780601909014950146901806424050480542c0601909014063f806354d4", + "0x504806114054240536405970063640542405360350325b018d80150901440", + "0xdb11c950144901509014450165d018db01509014b30141401847015090142a", + "0xbd0165f01806424050480542c060190901495014690180642405018fe01849", + "0x5370059740612c05424052cc050500612805424050a805048063700542405", + "0xfe0147501806424050480542c0601909014063f80637c4b12895014df01509", + "0x513c059700613c0542405134230325b0184d01509014b10165e0180642405", + "0x109014e00165d0185501509014050141401854015090141801412018e001509", + "0x5050059800601909014fe014750180642405018fe0182d15454254050b405", + "0x109014500165c0185001509014593ec0c96c061640542405080059780601909", + "0x54240516c05974060b0054240501405050063780542405060050480616c05", + "0x63f8060601404895988fe2540c25509030050180c984061782c378950145e", + "0x109014950143a0181d015090140c01414018fb01509014fe016630180642405", + "0x59980601909014063f80601a65014064380608805424053ec059900607805", + "0x20016640181e01509014140143a0181d015090141201414018200150901418", + "0xc08c057700608c05424052a8059a0062a805424050880599c060880542405", + "0x50a8059a8060a8054240509c057780601909014063f8062c4059a42701509", + "0x1090141e0143a0182f015090141d01414018b501509014b30166b018b301509", + "0xb10166d0180642405018fe018322e82f254050c805424052d4059b0062e805", + "0x52f0059b0060d40542405078050e8062f4054240507405050062f00542405", + "0x41018120150901412014cf018120150901406328060dc352f4950143701509", + "0x10901414014120180642405018fe0181d3ec0c9b8180500c4240c0480501895", + "0x5088059c40601909014063f806080059c0220780c4240c254059bc0605005", + "0x109014aa0167201827015090141e01447018aa01509014230165a0182301509", + "0x2a0165e0182a015090140643c0601909014063f80601a7301406438062c405", + "0xc2c40575c062c405424052cc059c80609c05424050800511c062cc0542405", + "0x5030050e8062f40542405060050500601909014063f8060bc059d0b501509", + "0x277018bc0c8ba25509014370d4bd256760183701509014b5016750183501509", + "0xbf016790180642405018970180642405018fe01840016782fc054240c2f005", + "0xba01414018d50150901414014120183c015090143a3f80c9e8060e80542405", + "0x50f0057b406114054240509c0511c0636405424050c8050e8063600542405", + "0x54240c350057bc063504133cca3f90901447114d9360d5049ee0184701509", + "0x4a370959f00612c4a370954240536c057c40601909014063f806124059ecdb", + "0xcf014140184f01509014ca014120184d01509014df0167d018df015090144b", + "0x543804f3f8051540542405134059f8061500542405104050e8063800542405", + "0x140185901509014ca014120182d01509014490167f0180642405018fe01855", + "0x593f80537805424050b4059f80616c0542405104050e806140054240533c05", + "0x537c060190901427014ba0180642405018970180642405018fe018de16c50", + "0x52e80505006178054240505005048060b00542405100059fc0601909014fe", + "0x6237460178fe01462015090142c0167e018dd01509014320143a0186001509", + "0x5424050190f01806424050bc050b406019090140625c0601909014063f806", + "0x10901414014120186701509014d30167d018d301509014da3f8272567c018da", + "0x54240519c059f8063300542405030050e8061a40542405060050500614405", + "0x10901495014ba0180642405018970180642405018fe018cd33069144fe014cd", + "0x52f40631805424050185e0186b01509014060c80601909014fe014df01806", + "0x6e030bf0186e01509014060dc0630c05424053186b03035018c601509014c6", + "0x1d014140187201509014fb01412018be01509014700167f0187001509014c3", + "0xb92ec723f8051d405424052f8059f8062e40542405030050e8062ec0542405", + "0x604805424053f805a00063f80c031090140c0160501806424050189701875", + "0x6074fb0310901418014aa0181801509014140142301814015090141201420", + "0xc5000608c05424052540513c060800542405074052cc0601909014fb01427", + "0x5048062a8054240503005a000601909014220142d018220780c4240508c20", + "0x1e0144f0182f01509014aa01418018b5015090140501414018b30150901406", + "0x32015090302a014540182a2c42725509014ba0bcb52ccfea04062e80542405", + "0x109014352f40c610060d4bd0310901432014550180642405018fe018bc01682", + "0x5424052c40505006100054240509c05048062fc05424050dc05614060dc05", + "0x52f00561c0601909014063f8060f03a100950143c01509014bf015860183a", + "0x109014ca015860184101509014b101414018cf015090142701412018ca01509", + "0x5018fe01812016843f895031090300c0140625683018d4104cf2540535005", + "0x5424052540504806060054240505005a180605005424053f805a140601909", + "0x542405018320180642405018fe0181d3ec0c0141d015090141801687018fb", + "0x2001509014220780c0d4060880542405088052f4060880542405019330181e", + "0x609c05424052a805a20062a8054240508023030bf0182301509014060dc06", + "0x10901412015d00182a2c40c0142a015090142701687018b1015090141201412", + "0x10901412014690180642405018fe0181801689019090301401520018140480c", + "0x643c0601909014950146901806424053f8051a406019090140c0146901806", + "0x501405188060780542405018050480607405424053ec05820063ec0542405", + "0x54d80601909014063f806080220789501420015090141d014b00182201509", + "0x2309c0c47c0609c120310901412015d0018230150901406a28060190901418", + "0x63f8062c405a2c064240c2a805480062a805424052a8052f4062a80542405", + "0x601909014fe014690180642405030051a4060190901412014690180642405", + "0x601412018b3015090142a016080182a015090140643c06019090149501469", + "0xba0bcb5254052e805424052cc052c0060bc054240501405188062d40542405", + "0x53f805740060c8054240501a8a01806424052c4054d80601909014063f806", + "0xbc01520018bc01509014bc014bd018bc01509014322f40c47c062f4fe03109", + "0x1090140c014690180642405048051a40601909014063f8060d405a30064240c", + "0x5820060dc05424050190f0180642405254051a40601909014fe0146901806", + "0xbf014b00183a01509014050146201840015090140601412018bf0150901437", + "0xca34060190901435015360180642405018fe0183c0e840254050f00542405", + "0x633c054240533c05a3c0601909014063f80610405a38cf3280c4240c25406", + "0xd803109030d53280ca3406354fe03109014fe015d0018d401509014cf01690", + "0x54240536405a4006364054240536405a3c0601909014063f80611405a44d9", + "0xbd018db01509014db014bd018490150901406a4c0636c054240501a9201847", + "0x6a54dc015090304936c0ca500636005424053600504806124054240512405", + "0x518806128054240537005a4006370054240537005a3c0601909014063f806", + "0x4d25697018e00150901412014bd0184f0150901447016960184d0150901405", + "0x29a0180642405018fe018540169901909030df01698018df12c0c424053804f", + "0x1090144a0169a0180642405030051a40601909014fe01469018064240535005", + "0x6164054240536005048060b40542405154058200615405424050190f01806", + "0x109014063f80616c50164950145b015090142d014b001850015090144b01462", + "0xdd015090144b0146201806424050b0051a4060b0de03109014540169b01806", + "0xc424053686237495a5c063680542405030052f406188054240512805a5806", + "0x5424053f8052f4061a4054240535005a5806144054240517805188061805e", + "0x6b016960186b1800c4240518005a700619cd303109014cc1a45125697018cc", + "0x6b0329d018c601509014c601696018c619c0c4240519c05a70061ac0542405", + "0x50190e0180642405018fe018c30169e01909030cd01698018cd01509014c6", + "0x6019090147001469018701b80c4240530c05a6c0601909014063f80601a9f", + "0xbe01509014be014bd018be01509014721b80c47c061c8de03109014de015d0", + "0x29a0180642405378051a40601909014063f8062ec05a80064240c2f80548006", + "0x109014b901619018b9015090140643c0601909014600169a018064240519c05", + "0x5424051d4052c0062d8054240534c05188061dc054240536005048061d405", + "0x109014600169601806424052ec054d80601909014063f8062d0b61dc95014b4", + "0x109030b801698018b801509014b21e80ca84062c8054240519c05a58061e805", + "0xfe01806a8c050190e0180642405378051a40601909014063f8062c005a8806", + "0xde20c0c47c06019090147d014690187d20c0c424052c005a6c060190901406", + "0x63f80620005a90064240c2b405480062b405424052b4052f4062b40542405", + "0x54240536005048062a005424052b005864062b005424050190f0180642405", + "0x63f8062189b298950148601509014a8014b00189b01509014d301462018a6", + "0x9701509014880160801888015090140643c060190901480015360180642405", + "0x5000054240525c052c006248054240534c051880624c05424053600504806", + "0x601909014fe01469018064240535005a680601909014063f8060009224c95", + "0x1090140643c0601909014470169a0180642405048051a406019090140c01469", + "0x542405014051880643c054240536005048064380542405434058200643405", + "0x5048051a40601909014063f8064451043c9501511015090150e014b001910", + "0x10f0180642405030051a40601909014fe01469018064240535005a680601909", + "0x5014620191401509014450141201913015090151201608019120150901406", + "0x690180642405018fe019164551425405458054240544c052c0064540542405", + "0x5424050190f01806424053f8051a406019090140c01469018064240504805", + "0x119015090140501462019180150901441014120190c01509015170160801917", + "0xc014770181d0150901406014120191a46518254054680542405430052c006", + "0x1e074fea94060800542405048052f40608805424053f80586c060780542405", + "0x3a0182a0150901405014140182301509014062c4063ec18050954240508022", + "0xfea9c060bc05424053ec05a98062d4054240508c052cc062cc054240525405", + "0x5424050c805aa4060c805424052c405aa0062c4272a895424050bcb52cc2a", + "0x5424052f0052e00601909014063f8062f405aa8bc01509030ba014b4018ba", + "0x40015090141401412018bf0150901437015af018370150901435015ae01835", + "0x6328054240509c050e8060f00542405060051dc060e805424052a80505006", + "0x52f4056c40601909014063f80633cca0f03a10012014cf01509014bf015b0", + "0x1090141801477018d501509014aa01414018d40150901414014120184101509", + "0x45364d8354d4048051140542405104056c006364054240509c050e80636005", + "0x950150901405015910180642405018fe0180c016ac014054240c01805aac06", + "0x642405018fe018120140504805424053f80563c063f805424052540564806", + "0x63ec05424050600563806060054240503014030bf0181401509014060dc06", + "0x542405014050e80604805424050180505006074050141d01509014fb0158f", + "0xfe018fb016ad060054240c3f805770063f895030954240505012031db01814", + "0x5078057800607805424050740577c06074054240506005778060190901406", + "0x230150b018064240508005788060190901422015e1018272a8230802204909", + "0x5424052c405790062c405424052a80578c060190901427014690180642405", + "0x2f015090142a015e5018b501509014950143a018b3015090140c014140182a", + "0x1090140c01414018ba01509014fb015e60180642405018fe0182f2d4b325405", + "0x2ae018bd2f032254052f405424052e805794062f00542405254050e8060c805", + "0x950150903006016af0180c014050300542405014058dc06014054240501805", + "0x60480542405048052f406048054240501ab10180642405018fe018fe016b0", + "0x608805424050500513c060780542405254059200605005424050480503035", + "0x1090141d0142d0181d3ec1825509014200881e256b201820015090140c0144f", + "0xfe01806acc050190e018aa01509014fb0144f0182301509014180144f01806", + "0x509c0503035018270150901427014bd018270150901406ad0060190901406", + "0x1090140c0144f018ba01509014b10144f0182f01509014fe015c1018b101509", + "0x2a0144f01806424052d4050b4062d4b30a895424050c8ba0bc95ad4060c805", + "0x10901423016b6018bc015090140643c062a805424052cc0513c0608c0542405", + "0x2b7018370d4bd254050dc05424052f00564c060d405424052a805ad8062f405", + "0x2300189501509014050162f0180642405018fe0180c016b8014054240c01805", + "0x370180642405018fe018120140504805424053f8058c4063f8054240525405", + "0x58c4063ec0542405060058cc06060054240503014030bf018140150901406", + "0xb10181201509014fe0161f018fe015090140687806074050141d01509014fb", + "0x14014b301806424053ec05728063ec18031090140c015be018140150901406", + "0x1e0740c4240c254120500501812ae406048054240504805880060500542405", + "0x5424052a8058ec062a805424050190f0180642405018fe0182308022256ba", + "0xb301509014270163c0182a015090141e0143a018b1015090141d0141401827", + "0x508805050062d4054240508c058f80601909014063f80601abb0140643806", + "0x109014b30163f018b301509014b50163c0182a01509014200143a018b101509", + "0x5018fe018bc016bc0c8054240c0bc056ec060bc05424052e805900062e805", + "0x10901435016be0183501509014bd0600caf4062f405424050c8059080601909", + "0x5424050dc05afc0610005424050a8050e8062fc05424052c405050060dc05", + "0x109014bc016c00180642405060057280601909014063f8060e8402fc950143a", + "0x5424050f005afc0633c05424050a8050e80632805424052c405050060f005", + "0x60c8063f8054240504805b040604805424052540592006104cf3289501441", + "0x53ec058d806074fb03109014fe016350181801509014060c8060500542405", + "0x5424050600513c062a805424050500513c0608c0542405074058dc0601909", + "0x5078051640601909014200142d018200881e25509014272a8232563801827", + "0x1090142201459018b3015090142a0145b01806424052c405140060a8b103109", + "0x5424052cc05060062e805424050bc0516c0601909014b5014500182f2d40c", + "0x352f495b08bc0c80c4240c2e8b3014063fa39018ba01509014ba01418018b3", + "0x50500610005424052fc058ec062fc05424050190f0180642405018fe01837", + "0x50190e018ca01509014400163c0183c01509014bc0143a0183a0150901432", + "0x60e805424052f4050500633c05424050dc058f80601909014063f80601ac3", + "0x240018d401509014ca0163f018ca01509014cf0163c0183c01509014350143a", + "0x2420180642405018fe018d8016c4354054240c104056ec06104054240535005", + "0x14018470150901445015c70184501509014d90300c71806364054240535405", + "0xdb25405370054240511c057200612405424050f0050e80636c05424050e805", + "0x140184a01509014d8015c90180642405030053640601909014063f80637049", + "0x4b254051340542405128057200637c05424050f0050e80612c05424050e805", + "0xfb01509014fe0161a0181801509014140161901814015090140643c06134df", + "0x62c40542405030051dc0609c054240501405050062a805424050180504806", + "0xb0018b50150901412014bd018b301509014fb0161b0182a01509014950143a", + "0x608c200881e07412424050bcb52cc2a2c4272a818b14060bc054240506005", + "0xbd2f00c424052e805b1c0601909014063f8060c805b18ba015090302301535", + "0xcb20060dc05424052f0056a0060d405424050190f01806424052f4050b406", + "0x5050060e80542405074050480610005424052fc05b24062fc05424050d437", + "0x40016ca018cf01509014200143a018ca0150901422014770183c015090141e", + "0xd40150901432016cb0180642405018fe0184133cca0f03a048051040542405", + "0x63640542405088051dc063600542405078050500635405424050740504806", + "0x50600611c45364d8354120144701509014d4016ca0184501509014200143a", + "0x14016cc048054240c25405318062540c03109014fe0146b018fe0150901405", + "0x642405018fe0181d016ce3ec1803109030120180cb340601909014063f806", + "0x6080054240503005060060880542405060050480607805424053ec05b3c06", + "0xaa015090140643c0601909014063f80608c200889501423015090141e01534", + "0x60a8054240503005060062c40542405074050480609c05424052a805b4006", + "0x54240505005b400601909014063f8062cc2a2c495014b3015090142701534", + "0x3201509014b501534018ba015090140c014180182f015090140601412018b5", + "0x59a80601909014063f80603005b48050150903006016d1018322e82f25405", + "0x6048050141201509014fe0166c018fe01509014950166b018950150901405", + "0x180166d01818015090140c0500c2fc060500542405018370180642405018fe", + "0x123f895255090140c016d30181d0140507405424053ec059b0063ec0542405", + "0x63ec05424050600516c06019090141401450018180500c424050480516406", + "0x2308095b54220781d25509030fb3f8950140604ad4018fb01509014fb01418", + "0x3a018b1015090141d01414018270150901422016d60180642405018fe018aa", + "0x109014063f80601ad801406438062cc054240509c05b5c060a8054240507805", + "0x2a01509014230143a018b1015090142001414018b501509014aa016d901806", + "0x60bc05424052e805b6c062e805424052cc05b68062cc05424052d405b5c06", + "0x62f405424050c8059e40601909014063f8062f005b7032015090302f01677", + "0x3a018bf01509014b1014140183701509014350142c0183501509014bd014de", + "0x642405018fe0183a100bf254050e805424050dc050f00610005424050a805", + "0x633c05424050a8050e80632805424052c405050060f005424052f00510006", + "0x109014fe014cf018fe015090140632806104cf3289501441015090143c0143c", + "0x200180642405018fe018fb0600cb74140480c4240c3f80501895104063f805", + "0x5b78220780c4240c0740524c0604805424050480504806074054240503005", + "0x10d018aa015090141e01400018230150901422014920180642405018fe01820", + "0xb1015090140643c0601909014063f80601adf014064380609c054240508c05", + "0x609c05424050a805434062a8054240508005000060a805424052c40544006", + "0x544806019090140625c0601909014063f8062d405b80b3015090302701511", + "0xbc030cc018bd01509014950144f018bc015090142f014bd0182f01509014b3", + "0x12014120183501509014aa0145b01806424050c8050b4060c8ba03109014bd", + "0x52e80513c0632805424050d405060060f0054240505005050060e80542405", + "0x2e1104054240c1000515006100bf0dc954240533cca0f03a3fa81018cf01509", + "0x601909014d80142d018d83540c42405104051540601909014063f80635005", + "0x10e0184701509014d50144f0184501509014bf01414018d9015090143701412", + "0x5424050dc050480636c05424053500561c0601909014063f80601ae201406", + "0x63f806128dc124950144a01509014db01586018dc01509014bf0141401849", + "0x1201806424052a805b8c0601909014b50142d0180642405018970180642405", + "0x643c0611c05424052540513c0611405424050500505006364054240504805", + "0xd9014120184d01509014df01585018df015090144b11c0c6100612c0542405", + "0x543804f25405150054240513405618063800542405114050500613c0542405", + "0x1090140c0146001806424052540514006019090140625c0601909014063f806", + "0x350182d015090142d014bd0182d01509014061780615405424050183201806", + "0x1870185b01509014591400c2fc0614005424050183701859015090142d1540c", + "0x56180617805424053ec05050060b005424050600504806378054240516c05", + "0x1090309501698018950140c4240501405a70061805e0b0950146001509014de", + "0x120150901406014620180642405030051a40601909014063f8063f805b9006", + "0x501405a680601909014063f80601ae50140643806050054240501405a5806", + "0x1d016e80181d3ec0c424053f80c060063fae7018180150901406b980601909", + "0x63f80601aea078054240c07405ba4063ec05424053ec05188060740542405", + "0x6bac050190e0182001509014220169601822015090141e016900180642405", + "0xfb0146201820015090142301696018230150901406bb00601909014063f806", + "0x505005bb4062a80542405048054c806050054240508005a58060480542405", + "0x5bb8064240c03005a60060300603109014060169c018272a80c0142701509", + "0xfe014053f8054240501405a580601909014060169a0180642405018fe01895", + "0x5bc00601909014063f80604805bbc064240c01405a600601909014063f806", + "0x60169a0180642405018fe0181401405050054240501805a58060190901495", + "0x109014fb016e8018fb01509014950600cbc406060054240501ae60180642405", + "0x1090301d016e90181d015090141d016e80181d01509014123ec0cbc4063ec05", + "0x54240508805a5806088054240507805a400601909014063f80601af207805", + "0x508c05a580608c054240501aec0180642405018fe01806bcc050190e01820", + "0x2980180c0140c4240501405a70062a805014aa0150901420016ed0182001509", + "0x601696018064240501405a680601909014063f80625405bd0064240c03005", + "0x501405bd4060190901495016f00180642405018fe018fe014053f80542405", + "0x53ec180329d018fb015090141201696018180150901406016960181201509", + "0x501af7018064240503005bd806074050141d0150901414016ed0181401509", + "0x10901414014bd018140150901412016f90181201509014fe016f8018fe01509", + "0x1d016f90181d01509014fb016f8018fb0600c424052541401495be80605005", + "0x50480608022031090141e0180cbec060780542405078052f4060780542405", + "0xaa08c95014270150901420016a6018aa015090141801477018230150901422", + "0xfb256fc06014048954240c3f80c014063fa21018fe01509014950161f01827", + "0x6019090142201469018200880c42405060051440601909014063f8060781d", + "0x54500601909014aa01469018272a80c4240508c051440608c05424050191e", + "0x270151401806424050a8051a4062cc2a03109014b101451018b10150901420", + "0x52cc0545006019090142f01469018ba0bc0c424052d405144062d40542405", + "0x52f0320311f018320150901432014bd018bc01509014ba015140183201509", + "0x109014140143a01812015090141201414018bd01509014bd014bd018bd01509", + "0x37015090140643c0601909014063f8060d405bf4064240c2f4054800605005", + "0x63f80601afe014064380610005424052fc052c0062fc05424050dc0586406", + "0x3c015090143a016080183a015090140643c060190901435015360180642405", + "0x633c054240532805c0006328054240510005bfc0610005424050f0052c006", + "0x95014d501509014cf01701018d401509014140143a01841015090141201414", + "0xd901509014fb01414018d8015090141e017020180642405018fe018d535041", + "0x60170301847114d92540511c054240536005c04061140542405074050e806", + "0x95015af018950150901405015ae0180642405018fe0180c01704014054240c", + "0x5018370180642405018fe018120140504805424053f8056c0063f80542405", + "0x53ec056c0063ec0542405060056c406060054240503014030bf0181401509", + "0x513c060500542405254052f406254054240501805c1406074050141d01509", + "0x643c0601909014120142d018123f80c4240506014030cc01818015090140c", + "0x53ec0564c0607805424053f80513c0607405424050140513c063ec0542405", + "0x60500542405254052f4062540542405018054c4060881e074950142201509", + "0x601909014120142d018123f80c4240506014030cc01818015090140c0144f", + "0x564c0607805424053f80513c0607405424050140513c063ec05424050190f", + "0x542405014058dc06014054240501805c18060881e074950142201509014fb", + "0xc0147701820015090140601412018fb0600c424053f805c1c06030050140c", + "0x23080fea940609c0542405048052f4062a805424053ec0586c0608c0542405", + "0x5c202a01509030140158b018b101509014062c4060881e074954240509caa", + "0xb5014bd018b5015090140647806019090142a0142d0180642405018fe018b3", + "0x12801806424052cc050b40601909014063f80601b0901406438060bc0542405", + "0xb1014b30183201509014220161f0182f01509014ba014bd018ba0150901406", + "0x63f8062fc370d495c28bd2f00c4240c0bc322c49501412ae4062c40542405", + "0x5424052f005050060e80542405100058ec0610005424050190f0180642405", + "0xfe01806c2c050190e018cf015090143a0163c018ca01509014bd0143a0183c", + "0x50dc050e8060f005424050d4050500610405424052fc058f8060190901406", + "0x109014d501640018d501509014cf0163f018cf01509014410163c018ca01509", + "0x109014d8016420180642405018fe018d90170c360054240c350056ec0635005", + "0x1090141d01412018db01509014470170e0184701509014450600cc340611405", + "0x542405328050e8061280542405078051dc0637005424050f0050500612405", + "0x5bd80601909014063f80637c4b128dc12412014df01509014db0170f0184b", + "0x50f0050500613c05424050740504806134054240536405c40060190901418", + "0x1090144d0170f0185501509014ca0143a01854015090141e01477018e001509", + "0x6254054240501805b5c06014054240501b110182d154543804f048050b405", + "0x313048054240c030059dc0603005424053f89503312018fe0150901405014bd", + "0x63ec054240506005378060600542405048059e40601909014063f80605005", + "0x601909014063f806078050141e015090141d0143c0181d01509014fb0142c", + "0x54240c018054c006080050142001509014220143c01822015090141401440", + "0xfe015090140c014de0180642405014051a40601909014063f80625405c500c", + "0x642405018fe01814014050500542405048050f00604805424053f8050b006", + "0x37018fb01509014050600c0d40606005424050183201806424052540514006", + "0x50f0060880542405078051000607805424053ec1d030bf0181d0150901406", + "0x120189503005018a601893248fe0600624c923f87208005014200150901422", + "0x9204818018932c0920498b3f89503005018a6018932c09204818018932c092", + "0xc014062980624cb0248120600624cb02481291cfe2540c014062980624cb0", + "0x93248b904b163f89503005018a6018932c09204818018932c09204b153f895", + "0x624c922e4120600624c922e412c5cfe2540c014062980624c922e41206006", + "0x93248fec649503005018a601893248fe0600624c923fb183f89503005018a6", + "0xc014062980624c923f81801893248fec689503005018a601893248fe06006", + "0x9204818018932c09204b1c2540c014062980624c923f81801893248fec6c95", + "0xc014062980624c922e4120600624c922e412c74fe2540c014062980624cb0", + "0x624c923f84d1b80624c9204b1f030050189724c922541824c922571e3f895", + "0x932c09204b212540c014062b493248950484b24c923fb203f89503005018ac", + "0x18017230140607812030120300cc88fe2540c014062c80624cb0248121b806", + "0x120306e018932c0920632503005018b624c922541824c9225724018b40600c", + "0xb924c920480c1b8062e49324814c9814048fe2540c014062c80624cb024812", + "0xc1b8062e49324814ca0050181e0480c0482703327048fe2540c014062ec06", + "0x32a03005018b2018932546e0189325729048fe2540c014062ec062e49324812", + "0xc014062c80624c951b80624c95cac9503005018be018932540c1b80624cfe", + "0x93248120306e018b924c920532d2540c014062f80624c950306e018933fb2c", + "0xfe2540c0140625c93248950304d0609324812cb8123f89503005018be018b9", + "0x624c923fb31014063300624c950189303330014063180624c95018930332f", + "0x1234c93248feccc050181e0480c0489b033322540c014062b00624c923f84d", + "0x5018bb018932c092048180306e018932c092063342540c014062b49324895", + "0x9324814cd8fe2540c014062d89324895030120609324812cd414048fe2540c", + "0xb2018932543a0189325737048fe2540c014062ec062e4932481203035018b9", + "0x5018be01893254411b80624cfece405018da018932540624c0cce00c01406", + "0x120306e018b924c920533b2540c014062f80624c950306e018933fb3a2540c", + "0xccf40c0140637493248950609324895cf0123f89503005018be018b924c92", + "0xfe2540c014063800624c923f84a1340624c9204b3e014063780624c9501893", + "0xc0140636c920309b05092257402540c014062b493248950481824c923fb3f", + "0x1d018b924c9205342048fe2540c0140609cb0248950300c0300c2c09205341", + "0x932540624c0cd10062c80535405d0c123f89503005018bb018b924c920480c", + "0xcf01747030050181e0481225412048d425746018d401441017450140631806", + "0x93254401b80624cfed249503005018ca018932540c0e80624cfed200636805", + "0xfe2540c014062fc062e4932481203035018b924c920534a2540c014062f806", + "0x624c950b00624c95d3406378052e805d3005018bc06092254182480cd2c12", + "0xb00300c0a8b02574f2540c014062b493248950481824c923fb4e03005018a6", + "0x1d2e4923fb52014060a8050a82a03351014060a8050a82a03350030050182a", + "0x5d509503005018b101893254d926c0624cfed4c9503005018d92e4922540c", + "0x1e04812254120484125756030050181e04812254120484025755018bb014b1", + "0x62a8062e4932481209c0c074062e49324818d60063500510005d5c0c01406", + "0x35b0140629805030fb0335a018a6014fb01759050123f89503005" + ], + "sierra_program_debug_info": { + "type_names": [ + [0, "System"], + [1, "Uninitialized"], + [2, "felt252"], + [3, "core::pedersen::HashState"], + [4, "EcState"], + [5, "Array"], + [6, "Snapshot>"], + [7, "core::array::Span::"], + [ + 8, + "core::result::Result::, core::array::Array::>" + ], + [ + 9, + "openzeppelin::introspection::src5::SRC5::SRC5_supported_interfaces::ContractMemberState" + ], + [10, "Unit"], + [ + 11, + "Tuple" + ], + [12, "core::panics::Panic"], + [13, "Tuple>"], + [ + 14, + "core::panics::PanicResult::<(openzeppelin::introspection::src5::SRC5::SRC5_supported_interfaces::ContractMemberState, ())>" + ], + [15, "core::bool"], + [ + 16, + "core::result::Result::>" + ], + [17, "EcPoint"], + [18, "NonZero"], + [19, "Box"], + [20, "Box"], + [ + 21, + "core::result::Result::, core::array::Array::>" + ], + [22, "ContractAddress"], + [ + 23, + "core::option::Option::" + ], + [24, "Uninitialized"], + [25, "openzeppelin::introspection::src5::SRC5::ContractState"], + [ + 26, + "Tuple" + ], + [ + 27, + "core::panics::PanicResult::<(openzeppelin::introspection::src5::SRC5::ContractState, ())>" + ], + [28, "openzeppelin::account::account::Account::OwnerAdded"], + [ + 29, + "openzeppelin::account::account::Account::Account_public_key::ContractMemberState" + ], + [ + 30, + "Tuple" + ], + [ + 31, + "core::panics::PanicResult::<(openzeppelin::account::account::Account::Account_public_key::ContractMemberState, ())>" + ], + [32, "core::result::Result::<(), core::array::Array::>"], + [33, "openzeppelin::account::account::Account::OwnerRemoved"], + [34, "openzeppelin::account::account::Account::Event"], + [ + 35, + "core::result::Result::>" + ], + [36, "StorageAddress"], + [37, "StorageBaseAddress"], + [38, "Box"], + [39, "Tuple>"], + [40, "core::panics::PanicResult::<(core::box::Box::<@core::felt252>,)>"], + [41, "Box>"], + [ + 42, + "core::option::Option::>>" + ], + [43, "Array>"], + [44, "Snapshot>>"], + [ + 45, + "Uninitialized>>>" + ], + [46, "Array"], + [ + 47, + "Tuple, Array>, Unit>" + ], + [ + 48, + "core::panics::PanicResult::<(core::array::Array::, core::array::Array::>, ())>" + ], + [49, "Box"], + [50, "Box"], + [51, "core::starknet::info::ExecutionInfo"], + [52, "u64"], + [53, "core::starknet::info::BlockInfo"], + [54, "Tuple>"], + [ + 55, + "core::panics::PanicResult::<(core::box::Box::,)>" + ], + [56, "core::starknet::account::Call"], + [57, "core::option::Option::"], + [ + 58, + "Tuple, core::option::Option::>" + ], + [ + 59, + "core::panics::PanicResult::<(core::array::Span::, core::option::Option::)>" + ], + [60, "Tuple"], + [61, "core::panics::PanicResult::<((),)>"], + [62, "core::array::Span::>"], + [63, "u128"], + [64, "core::starknet::info::TxInfo"], + [65, "Tuple>"], + [ + 66, + "core::panics::PanicResult::<(core::box::Box::,)>" + ], + [67, "NonZero"], + [68, "Tuple"], + [ + 69, + "core::panics::PanicResult::<(core::starknet::contract_address::ContractAddress,)>" + ], + [70, "core::option::Option::>"], + [71, "openzeppelin::account::account::Account::ContractState"], + [ + 72, + "Tuple" + ], + [ + 73, + "core::panics::PanicResult::<(openzeppelin::account::account::Account::ContractState, ())>" + ], + [74, "Tuple"], + [75, "core::panics::PanicResult::<(core::bool,)>"], + [76, "Pedersen"], + [77, "core::option::Option::>"], + [ + 78, + "Tuple, core::option::Option::>>" + ], + [ + 79, + "core::panics::PanicResult::<(core::array::Span::, core::option::Option::>)>" + ], + [80, "core::option::Option::"], + [81, "Uninitialized"], + [82, "Tuple"], + [83, "core::panics::PanicResult::<(core::felt252,)>"], + [84, "EcOp"], + [85, "Tuple>"], + [86, "Tuple, Unit>"], + [ + 87, + "core::panics::PanicResult::<(core::array::Array::, ())>" + ], + [88, "Tuple>>"], + [ + 89, + "core::panics::PanicResult::<(core::array::Array::>,)>" + ], + [90, "BuiltinCosts"], + [ + 91, + "core::panics::PanicResult::<(core::array::Span::,)>" + ], + [92, "u32"], + [ + 93, + "core::option::Option::>" + ], + [ + 94, + "Tuple, core::option::Option::>>" + ], + [ + 95, + "core::panics::PanicResult::<(core::array::Span::, core::option::Option::>)>" + ], + [96, "GasBuiltin"], + [97, "RangeCheck"] + ], + "libfunc_names": [ + [0, "alloc_local"], + [1, "finalize_locals"], + [2, "revoke_ap_tracking"], + [3, "withdraw_gas"], + [4, "branch_align"], + [5, "store_temp"], + [6, "store_temp"], + [7, "store_temp>"], + [ + 8, + "function_call::deserialize>" + ], + [ + 9, + "enum_match, core::option::Option::>)>>" + ], + [ + 10, + "struct_deconstruct, core::option::Option::>>>" + ], + [ + 11, + "enum_match>>" + ], + [12, "struct_deconstruct>"], + [13, "array_len"], + [14, "snapshot_take"], + [15, "drop"], + [16, "u32_const<0>"], + [17, "rename"], + [18, "store_temp"], + [19, "u32_eq"], + [20, "drop>"], + [21, "drop>"], + [22, "array_new"], + [ + 23, + "felt252_const<7733229381460288120802334208475838166080759535023995805565484692595>" + ], + [24, "store_temp"], + [25, "array_append"], + [26, "struct_construct"], + [27, "struct_construct>>"], + [ + 28, + "enum_init,)>, 1>" + ], + [29, "store_temp"], + [ + 30, + "store_temp,)>>" + ], + [31, "get_builtin_costs"], + [32, "store_temp"], + [33, "withdraw_gas_all"], + [ + 34, + "struct_construct" + ], + [ + 35, + "struct_construct" + ], + [ + 36, + "snapshot_take" + ], + [37, "drop"], + [ + 38, + "store_temp" + ], + [39, "store_temp>"], + [ + 40, + "function_call" + ], + [41, "store_local"], + [ + 42, + "enum_match>,)>>" + ], + [ + 43, + "struct_deconstruct>>>" + ], + [44, "snapshot_take>>"], + [45, "drop>>"], + [46, "store_temp>>>"], + [47, "store_temp>"], + [ + 48, + "function_call, core::array::SpanSerde::, core::array::SpanDrop::>::serialize>" + ], + [ + 49, + "enum_match, ())>>" + ], + [50, "struct_deconstruct, Unit>>"], + [51, "drop"], + [52, "snapshot_take>"], + [53, "drop>"], + [54, "struct_construct>"], + [55, "struct_construct>>"], + [ + 56, + "enum_init,)>, 0>" + ], + [57, "felt252_const<375233589013918064796019>"], + [58, "drop>"], + [ + 59, + "felt252_const<485748461484230571791265682659113160264223489397539653310998840191492913>" + ], + [60, "store_temp"], + [ + 61, + "function_call" + ], + [62, "enum_match>"], + [63, "struct_deconstruct>"], + [64, "snapshot_take"], + [65, "drop"], + [66, "function_call"], + [67, "alloc_local"], + [68, "function_call"], + [69, "enum_match>"], + [70, "store_local"], + [ + 71, + "function_call::deserialize>" + ], + [ + 72, + "enum_match, core::option::Option::>)>>" + ], + [ + 73, + "struct_deconstruct, core::option::Option::>>>" + ], + [ + 74, + "enum_match>>" + ], + [ + 75, + "function_call" + ], + [ + 76, + "felt252_const<485748461484230571791265682659113160264223489397539653310998840191492914>" + ], + [77, "drop>"], + [78, "store_temp"], + [ + 79, + "function_call" + ], + [80, "enum_match>"], + [81, "struct_deconstruct>"], + [82, "snapshot_take"], + [83, "drop"], + [84, "store_temp"], + [85, "function_call"], + [ + 86, + "function_call" + ], + [ + 87, + "function_call" + ], + [ + 88, + "function_call" + ], + [ + 89, + "enum_match>" + ], + [ + 90, + "drop>" + ], + [ + 91, + "function_call" + ], + [ + 92, + "function_call" + ], + [ + 93, + "felt252_const<485748461484230571791265682659113160264223489397539653310998840191492915>" + ], + [ + 94, + "function_call" + ], + [95, "disable_ap_tracking"], + [96, "array_snapshot_pop_front"], + [ + 97, + "enum_init>, 0>" + ], + [98, "store_temp>>"], + [ + 99, + "store_temp>>" + ], + [100, "jump"], + [101, "struct_construct"], + [ + 102, + "enum_init>, 1>" + ], + [ + 103, + "enum_match>>" + ], + [104, "unbox"], + [105, "array_new"], + [106, "rename"], + [ + 107, + "function_call>" + ], + [ + 108, + "struct_construct, core::option::Option::>>>" + ], + [ + 109, + "enum_init, core::option::Option::>)>, 0>" + ], + [ + 110, + "store_temp, core::option::Option::>)>>" + ], + [ + 111, + "enum_init, core::option::Option::>)>, 1>" + ], + [ + 112, + "enum_init>, 1>" + ], + [113, "function_call"], + [ + 114, + "enum_match>" + ], + [115, "struct_deconstruct>"], + [116, "contract_address_to_felt252"], + [117, "felt252_const<0>"], + [118, "felt252_sub"], + [119, "felt252_is_zero"], + [120, "function_call"], + [121, "enable_ap_tracking"], + [ + 122, + "enum_match,)>>" + ], + [123, "struct_deconstruct>>"], + [124, "unbox"], + [125, "struct_deconstruct"], + [126, "drop"], + [127, "drop"], + [128, "felt252_const<1>"], + [129, "drop>"], + [130, "felt252_const<340282366920938463463374607431768211457>"], + [ + 131, + "function_call" + ], + [ + 132, + "struct_construct>>>" + ], + [ + 133, + "enum_init>,)>, 0>" + ], + [ + 134, + "store_temp>,)>>" + ], + [ + 135, + "enum_init>,)>, 1>" + ], + [ + 136, + "felt252_const<26899160088882821476234389471510102233170292334138446031203430254>" + ], + [ + 137, + "felt252_const<6262948757243068301173483364169975331325598907448976754>" + ], + [138, "dup>>>"], + [139, "array_len>"], + [140, "function_call"], + [ + 141, + "struct_construct>>" + ], + [ + 142, + "store_temp>>" + ], + [ + 143, + "function_call, core::array::SpanSerde::, core::array::SpanDrop::>>" + ], + [144, "struct_construct, Unit>>"], + [ + 145, + "enum_init, ())>, 0>" + ], + [ + 146, + "store_temp, ())>>" + ], + [ + 147, + "enum_init, ())>, 1>" + ], + [ + 148, + "function_call" + ], + [149, "enum_match"], + [ + 150, + "felt252_const<105074844097198521391540583873086336848321434922596230638170725>" + ], + [151, "enum_init, 1>"], + [152, "store_temp>"], + [153, "felt252_const<370462705988>"], + [154, "struct_construct>"], + [155, "enum_init, 0>"], + [156, "store_temp"], + [157, "enum_init, 0>"], + [158, "store_temp>"], + [159, "enum_init, 1>"], + [ + 160, + "function_call>" + ], + [ + 161, + "struct_construct, core::option::Option::>>>" + ], + [ + 162, + "enum_init, core::option::Option::>)>, 0>" + ], + [ + 163, + "store_temp, core::option::Option::>)>>" + ], + [ + 164, + "enum_init, core::option::Option::>)>, 1>" + ], + [ + 165, + "enum_init>, 1>" + ], + [ + 166, + "struct_construct" + ], + [ + 167, + "struct_construct" + ], + [ + 168, + "snapshot_take" + ], + [169, "drop"], + [ + 170, + "store_temp" + ], + [ + 171, + "function_call" + ], + [172, "struct_construct>"], + [173, "enum_init, 0>"], + [174, "store_temp>"], + [175, "enum_init, 1>"], + [176, "rename"], + [ + 177, + "struct_deconstruct" + ], + [ + 178, + "store_temp" + ], + [ + 179, + "function_call" + ], + [ + 180, + "function_call" + ], + [181, "enum_match>"], + [182, "drop>"], + [ + 183, + "snapshot_take" + ], + [ + 184, + "struct_construct" + ], + [ + 185, + "store_temp" + ], + [ + 186, + "function_call>" + ], + [ + 187, + "struct_deconstruct>" + ], + [ + 188, + "function_call" + ], + [ + 189, + "struct_construct>" + ], + [ + 190, + "enum_init, 0>" + ], + [ + 191, + "store_temp>" + ], + [ + 192, + "enum_init, 1>" + ], + [ + 193, + "drop" + ], + [ + 194, + "function_call" + ], + [195, "dup"], + [ + 196, + "enum_init>, 0>" + ], + [ + 197, + "function_call" + ], + [ + 198, + "enum_match, core::option::Option::)>>" + ], + [ + 199, + "struct_deconstruct, core::option::Option::>>" + ], + [ + 200, + "enum_match>" + ], + [201, "array_append"], + [202, "function_call"], + [ + 203, + "enum_match,)>>" + ], + [ + 204, + "struct_deconstruct>>" + ], + [205, "unbox"], + [206, "struct_deconstruct"], + [207, "drop>"], + [208, "drop>"], + [209, "struct_construct>"], + [ + 210, + "enum_init, 0>" + ], + [ + 211, + "store_temp>" + ], + [ + 212, + "enum_init, 1>" + ], + [213, "struct_construct>>"], + [ + 214, + "enum_init,)>, 0>" + ], + [ + 215, + "store_temp,)>>" + ], + [ + 216, + "enum_init,)>, 1>" + ], + [217, "array_new>"], + [218, "store_temp>>"], + [ + 219, + "function_call" + ], + [ + 220, + "enum_match, core::array::Array::>, ())>>" + ], + [ + 221, + "struct_deconstruct, Array>, Unit>>" + ], + [222, "u32_to_felt252"], + [223, "alloc_local>>>"], + [ + 224, + "struct_deconstruct>>" + ], + [225, "array_snapshot_pop_front>"], + [ + 226, + "enum_init>>, 0>" + ], + [ + 227, + "store_temp>>>" + ], + [ + 228, + "enum_init>>, 1>" + ], + [229, "store_local>>>"], + [ + 230, + "enum_match>>>" + ], + [231, "unbox>"], + [ + 232, + "function_call::serialize>" + ], + [233, "drop>>>"], + [ + 234, + "drop>>>>" + ], + [235, "drop>>"], + [236, "dup>"], + [237, "u32_const<2>"], + [238, "enum_init"], + [239, "function_call>"], + [ + 240, + "enum_match,)>>" + ], + [241, "struct_deconstruct>>"], + [242, "u32_const<1>"], + [243, "function_call"], + [244, "drop>"], + [ + 245, + "enum_init>, 0>" + ], + [ + 246, + "felt252_const<1797054754729183305928171726271749999318198861813713898581160688510183841877>" + ], + [247, "enum_init"], + [ + 248, + "struct_deconstruct" + ], + [ + 249, + "store_temp" + ], + [ + 250, + "function_call" + ], + [ + 251, + "storage_base_address_const<550557492744938365112574611882025123252567779123164597803728068558738016655>" + ], + [252, "storage_address_from_base"], + [253, "store_temp"], + [254, "storage_read_syscall"], + [ + 255, + "enum_init>, 0>" + ], + [ + 256, + "store_temp>>" + ], + [ + 257, + "enum_init>, 1>" + ], + [ + 258, + "rename>>" + ], + [ + 259, + "function_call::unwrap_syscall>" + ], + [260, "function_call"], + [261, "snapshot_take"], + [262, "rename"], + [263, "struct_construct>"], + [264, "enum_init, 0>"], + [265, "store_temp>"], + [ + 266, + "felt252_const<95565013996018498247890117593540195050286445389156>" + ], + [267, "enum_init, 1>"], + [268, "drop>"], + [ + 269, + "function_call" + ], + [270, "snapshot_take"], + [271, "drop"], + [272, "store_temp"], + [ + 273, + "function_call" + ], + [274, "emit_event_syscall"], + [ + 275, + "enum_init>, 0>" + ], + [ + 276, + "store_temp>>" + ], + [ + 277, + "enum_init>, 1>" + ], + [ + 278, + "rename>>" + ], + [ + 279, + "function_call::unwrap_syscall>" + ], + [280, "struct_deconstruct>"], + [ + 281, + "function_call" + ], + [ + 282, + "enum_match>" + ], + [ + 283, + "struct_deconstruct>" + ], + [ + 284, + "struct_construct" + ], + [285, "store_temp"], + [ + 286, + "function_call>" + ], + [ + 287, + "felt252_const<1270010605630597976495846281167968799381097569185364931397797212080166453709>" + ], + [ + 288, + "function_call" + ], + [ + 289, + "enum_match>" + ], + [ + 290, + "drop>" + ], + [291, "alloc_local"], + [ + 292, + "function_call" + ], + [ + 293, + "enum_match>" + ], + [294, "store_local"], + [295, "struct_construct"], + [ + 296, + "enum_init, 0>" + ], + [ + 297, + "struct_construct, core::option::Option::>>" + ], + [ + 298, + "enum_init, core::option::Option::)>, 0>" + ], + [ + 299, + "store_temp, core::option::Option::)>>" + ], + [ + 300, + "enum_init, 1>" + ], + [ + 301, + "enum_init, core::option::Option::)>, 1>" + ], + [302, "drop>"], + [303, "get_execution_info_syscall"], + [ + 304, + "enum_init, core::array::Array::>, 0>" + ], + [ + 305, + "store_temp, core::array::Array::>>" + ], + [ + 306, + "enum_init, core::array::Array::>, 1>" + ], + [ + 307, + "rename, core::array::Array::>>" + ], + [ + 308, + "function_call>::unwrap_syscall>" + ], + [ + 309, + "struct_construct>>" + ], + [ + 310, + "enum_init,)>, 0>" + ], + [ + 311, + "store_temp,)>>" + ], + [ + 312, + "enum_init,)>, 1>" + ], + [313, "array_pop_front"], + [314, "unbox"], + [ + 315, + "store_temp>" + ], + [316, "store_temp"], + [ + 317, + "function_call" + ], + [ + 318, + "enum_match,)>>" + ], + [319, "struct_deconstruct>>"], + [320, "array_append>"], + [ + 321, + "struct_construct, Array>, Unit>>" + ], + [ + 322, + "enum_init, core::array::Array::>, ())>, 0>" + ], + [ + 323, + "store_temp, core::array::Array::>, ())>>" + ], + [ + 324, + "enum_init, core::array::Array::>, ())>, 1>" + ], + [325, "rename>"], + [ + 326, + "function_call>" + ], + [327, "array_get"], + [328, "struct_construct>>"], + [ + 329, + "enum_init,)>, 0>" + ], + [ + 330, + "store_temp,)>>" + ], + [331, "felt252_const<1637570914057682275393755530660268060279989363>"], + [ + 332, + "enum_init,)>, 1>" + ], + [ + 333, + "felt252_const<3618502788666131213697322783095070105526743751716087489154079457884512865583>" + ], + [334, "ec_point_from_x_nz"], + [335, "store_temp>"], + [336, "unwrap_non_zero"], + [ + 337, + "felt252_const<874739451078007766457464989774322083649278607533249481151382481072868806602>" + ], + [ + 338, + "felt252_const<152666792071518830868575557812948353041420400780739481342941381225525861407>" + ], + [339, "ec_point_try_new_nz"], + [340, "store_temp"], + [341, "function_call"], + [342, "ec_point_is_zero"], + [343, "drop"], + [344, "ec_point_unwrap"], + [345, "dup"], + [346, "function_call"], + [347, "function_call"], + [ + 348, + "function_call" + ], + [349, "store_temp"], + [ + 350, + "function_call" + ], + [ + 351, + "rename>>" + ], + [ + 352, + "function_call::unwrap_syscall>" + ], + [ + 353, + "enum_match>>" + ], + [354, "enum_init"], + [355, "enum_match"], + [ + 356, + "felt252_const<1610331728778078893946407512609881658931720321973668761376942902098853979009>" + ], + [ + 357, + "function_call" + ], + [ + 358, + "felt252_const<22344655548567333405387866802074085172395779041116519548464544628677498541>" + ], + [ + 359, + "function_call" + ], + [360, "rename>"], + [ + 361, + "enum_match>>" + ], + [362, "storage_write_syscall"], + [ + 363, + "struct_construct>" + ], + [ + 364, + "enum_init, 0>" + ], + [ + 365, + "store_temp>" + ], + [ + 366, + "enum_init, 1>" + ], + [ + 367, + "function_call" + ], + [ + 368, + "function_call" + ], + [ + 369, + "enum_match>" + ], + [ + 370, + "struct_deconstruct>" + ], + [ + 371, + "struct_construct>" + ], + [ + 372, + "enum_init, 0>" + ], + [ + 373, + "store_temp>" + ], + [ + 374, + "enum_init, 1>" + ], + [375, "contract_address_try_from_felt252"], + [ + 376, + "enum_init, 0>" + ], + [ + 377, + "store_temp>" + ], + [ + 378, + "enum_init, 1>" + ], + [ + 379, + "enum_match, core::array::Array::>>" + ], + [380, "struct_deconstruct"], + [381, "call_contract_syscall"], + [ + 382, + "enum_init, core::array::Array::>, 0>" + ], + [ + 383, + "store_temp, core::array::Array::>>" + ], + [ + 384, + "enum_init, core::array::Array::>, 1>" + ], + [ + 385, + "rename, core::array::Array::>>" + ], + [ + 386, + "function_call, core::array::Array::>::unwrap::>>" + ], + [387, "drop>>"], + [388, "ec_state_init"], + [389, "ec_state_add_mul"], + [390, "store_temp"], + [391, "ec_state_try_finalize_nz"], + [392, "ec_point_zero"], + [393, "rename"], + [394, "rename"], + [395, "drop>"], + [396, "ec_state_add"], + [397, "ec_neg"], + [ + 398, + "drop" + ], + [ + 399, + "felt252_const<29856869448526851354677579421814598404948672607251612773571742675033995705>" + ], + [400, "struct_construct"], + [401, "struct_deconstruct"], + [402, "pedersen"], + [403, "storage_base_address_from_felt252"], + [404, "bool_not_impl"], + [ + 405, + "enum_init>, 0>" + ], + [ + 406, + "store_temp>>" + ], + [ + 407, + "enum_init>, 1>" + ], + [ + 408, + "enum_match>>" + ], + [ + 409, + "struct_deconstruct" + ], + [ + 410, + "struct_deconstruct" + ], + [411, "enum_init"], + [ + 412, + "snapshot_take" + ], + [ + 413, + "struct_construct>" + ], + [ + 414, + "enum_init, 0>" + ], + [ + 415, + "store_temp>" + ], + [ + 416, + "enum_init, 1>" + ], + [ + 417, + "felt252_const<30828113188794245257250221355944970489240709081949230>" + ], + [ + 418, + "function_call, core::array::Array::>::expect::>>" + ], + [ + 419, + "enum_match, core::array::Array::>>" + ] + ], + "user_func_names": [ + [0, "openzeppelin::account::account::Account::__wrapper___execute__"], + [1, "openzeppelin::account::account::Account::__wrapper___validate__"], + [ + 2, + "openzeppelin::account::account::Account::__wrapper_is_valid_signature" + ], + [ + 3, + "openzeppelin::account::account::Account::__wrapper_isValidSignature" + ], + [ + 4, + "openzeppelin::account::account::Account::__wrapper___validate_declare__" + ], + [ + 5, + "openzeppelin::account::account::Account::__wrapper_supports_interface" + ], + [ + 6, + "openzeppelin::account::account::Account::__wrapper_supportsInterface" + ], + [7, "openzeppelin::account::account::Account::__wrapper_get_public_key"], + [8, "openzeppelin::account::account::Account::__wrapper_set_public_key"], + [9, "openzeppelin::account::account::Account::__wrapper_getPublicKey"], + [10, "openzeppelin::account::account::Account::__wrapper_setPublicKey"], + [ + 11, + "openzeppelin::account::account::Account::__wrapper___validate_deploy__" + ], + [12, "openzeppelin::account::account::Account::__wrapper_constructor"], + [ + 13, + "core::array::ArraySerde::::deserialize" + ], + [14, "openzeppelin::account::account::Account::SRC6Impl::__execute__"], + [ + 15, + "core::array::ArraySerde::, core::array::SpanSerde::, core::array::SpanDrop::>::serialize" + ], + [ + 16, + "openzeppelin::account::account::Account::InternalImpl::validate_transaction" + ], + [17, "core::Felt252Serde::serialize"], + [18, "core::Felt252Serde::deserialize"], + [ + 19, + "core::array::ArraySerde::::deserialize" + ], + [ + 20, + "openzeppelin::account::account::Account::SRC6Impl::is_valid_signature" + ], + [ + 21, + "openzeppelin::account::account::Account::SRC5Impl::supports_interface" + ], + [22, "core::BoolSerde::serialize"], + [ + 23, + "openzeppelin::account::account::Account::SRC5CamelImpl::supportsInterface" + ], + [ + 24, + "openzeppelin::account::account::Account::PublicKeyImpl::get_public_key" + ], + [ + 25, + "openzeppelin::account::account::Account::PublicKeyImpl::set_public_key" + ], + [ + 26, + "openzeppelin::account::account::Account::PublicKeyCamelImpl::getPublicKey" + ], + [ + 27, + "openzeppelin::account::account::Account::PublicKeyCamelImpl::setPublicKey" + ], + [28, "openzeppelin::account::account::Account::constructor"], + [ + 29, + "core::array::deserialize_array_helper::" + ], + [30, "core::starknet::info::get_caller_address"], + [31, "core::starknet::info::get_tx_info"], + [32, "openzeppelin::account::account::Account::_execute_calls"], + [33, "core::integer::U32Serde::serialize"], + [ + 34, + "core::array::serialize_array_helper::, core::array::SpanSerde::, core::array::SpanDrop::>" + ], + [ + 35, + "openzeppelin::account::account::Account::InternalImpl::_is_valid_signature" + ], + [ + 36, + "core::array::deserialize_array_helper::" + ], + [ + 37, + "openzeppelin::introspection::src5::SRC5::SRC5Impl::supports_interface" + ], + [ + 38, + "openzeppelin::account::account::Account::Account_public_key::InternalContractMemberStateImpl::read" + ], + [39, "openzeppelin::account::account::Account::assert_only_self"], + [ + 40, + "openzeppelin::account::account::Account::ContractStateEventEmitter::emit::" + ], + [ + 41, + "openzeppelin::account::account::Account::InternalImpl::_set_public_key" + ], + [ + 42, + "openzeppelin::account::account::Account::InternalImpl::initializer" + ], + [43, "core::starknet::account::CallSerde::deserialize"], + [44, "core::starknet::info::get_execution_info"], + [45, "openzeppelin::account::account::Account::_execute_calls[expr12]"], + [ + 46, + "core::array::SpanSerde::::serialize" + ], + [47, "core::array::array_at::"], + [48, "core::ecdsa::check_ecdsa_signature"], + [ + 49, + "openzeppelin::introspection::src5::SRC5::SRC5_supported_interfaces::InternalContractMemberStateImpl::read" + ], + [ + 50, + "core::starknet::SyscallResultTraitImpl::::unwrap_syscall" + ], + [51, "core::starknet::info::get_contract_address"], + [ + 52, + "openzeppelin::account::account::Account::EventOwnerRemovedIntoEvent::into" + ], + [ + 53, + "openzeppelin::account::account::Account::EventIsEvent::append_keys_and_data" + ], + [54, "core::starknet::SyscallResultTraitImpl::<()>::unwrap_syscall"], + [ + 55, + "openzeppelin::account::account::Account::Account_public_key::InternalContractMemberStateImpl::write" + ], + [ + 56, + "openzeppelin::account::account::Account::ContractStateEventEmitter::emit::" + ], + [ + 57, + "openzeppelin::introspection::src5::SRC5::InternalImpl::register_interface" + ], + [ + 58, + "core::starknet::contract_address::ContractAddressSerde::deserialize" + ], + [ + 59, + "core::starknet::SyscallResultTraitImpl::>::unwrap_syscall" + ], + [60, "openzeppelin::account::account::Account::_execute_single_call"], + [ + 61, + "core::array::serialize_array_helper::" + ], + [62, "core::ec::EcPointImpl::mul"], + [63, "core::ec::EcPointAdd::add"], + [64, "core::ec::EcPointSub::sub"], + [ + 65, + "openzeppelin::introspection::src5::SRC5::SRC5_supported_interfaces::InternalContractMemberStateImpl::address" + ], + [66, "core::starknet::storage_access::StoreBool::read"], + [ + 67, + "core::starknet::SyscallResultTraitImpl::::unwrap_syscall" + ], + [ + 68, + "openzeppelin::account::account::Account::OwnerAddedIsEvent::append_keys_and_data" + ], + [ + 69, + "openzeppelin::account::account::Account::OwnerRemovedIsEvent::append_keys_and_data" + ], + [ + 70, + "openzeppelin::account::account::Account::EventOwnerAddedIntoEvent::into" + ], + [ + 71, + "openzeppelin::introspection::src5::SRC5::SRC5_supported_interfaces::InternalContractMemberStateImpl::write" + ], + [ + 72, + "core::result::ResultTraitImpl::, core::array::Array::>::unwrap::>" + ], + [ + 73, + "core::result::ResultTraitImpl::, core::array::Array::>::expect::>" + ] + ] + }, + "contract_class_version": "0.1.0", + "entry_points_by_type": { + "EXTERNAL": [ + { + "selector": "0xbc0eb87884ab91e330445c3584a50d7ddf4b568f02fbeb456a6242cce3f5d9", + "function_idx": 10 + }, + { + "selector": "0xfe80f537b66d12a00b6d3c072b44afbb716e78dde5c3f0ef116ee93d3e3283", + "function_idx": 5 + }, + { + "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "function_idx": 0 + }, + { + "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "function_idx": 1 + }, + { + "selector": "0x1a35984e05126dbecb7c3bb9929e7dd9106d460c59b1633739a5c733a5fb13b", + "function_idx": 7 + }, + { + "selector": "0x1a6c6a0bdec86cc645c91997d8eea83e87148659e3e61122f72361fd5e94079", + "function_idx": 9 + }, + { + "selector": "0x213dfe25e2ca309c4d615a09cfc95fdb2fc7dc73fbcad12c450fe93b1f2ff9e", + "function_idx": 3 + }, + { + "selector": "0x28420862938116cb3bbdbedee07451ccc54d4e9412dbef71142ad1980a30941", + "function_idx": 2 + }, + { + "selector": "0x289da278a8dc833409cabfdad1581e8e7d40e42dcaed693fa4008dcdb4963b3", + "function_idx": 4 + }, + { + "selector": "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd", + "function_idx": 6 + }, + { + "selector": "0x2e3e21ff5952b2531241e37999d9c4c8b3034cccc89a202a6bf019bdf5294f9", + "function_idx": 8 + }, + { + "selector": "0x36fcbf06cd96843058359e1a75928beacfac10727dab22a3972f0af8aa92895", + "function_idx": 11 + } + ], + "L1_HANDLER": [], + "CONSTRUCTOR": [ + { + "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194", + "function_idx": 12 + } + ] + }, + "abi": [ + { + "type": "impl", + "name": "SRC6Impl", + "interface_name": "openzeppelin::account::interface::ISRC6" + }, + { + "type": "struct", + "name": "core::starknet::account::Call", + "members": [ + { + "name": "to", + "type": "core::starknet::contract_address::ContractAddress" + }, + { "name": "selector", "type": "core::felt252" }, + { "name": "calldata", "type": "core::array::Array::" } + ] + }, + { + "type": "struct", + "name": "core::array::Span::", + "members": [ + { "name": "snapshot", "type": "@core::array::Array::" } + ] + }, + { + "type": "interface", + "name": "openzeppelin::account::interface::ISRC6", + "items": [ + { + "type": "function", + "name": "__execute__", + "inputs": [ + { + "name": "calls", + "type": "core::array::Array::" + } + ], + "outputs": [ + { + "type": "core::array::Array::>" + } + ], + "state_mutability": "view" + }, + { + "type": "function", + "name": "__validate__", + "inputs": [ + { + "name": "calls", + "type": "core::array::Array::" + } + ], + "outputs": [{ "type": "core::felt252" }], + "state_mutability": "view" + }, + { + "type": "function", + "name": "is_valid_signature", + "inputs": [ + { "name": "hash", "type": "core::felt252" }, + { + "name": "signature", + "type": "core::array::Array::" + } + ], + "outputs": [{ "type": "core::felt252" }], + "state_mutability": "view" + } + ] + }, + { + "type": "impl", + "name": "SRC6CamelOnlyImpl", + "interface_name": "openzeppelin::account::interface::ISRC6CamelOnly" + }, + { + "type": "interface", + "name": "openzeppelin::account::interface::ISRC6CamelOnly", + "items": [ + { + "type": "function", + "name": "isValidSignature", + "inputs": [ + { "name": "hash", "type": "core::felt252" }, + { + "name": "signature", + "type": "core::array::Array::" + } + ], + "outputs": [{ "type": "core::felt252" }], + "state_mutability": "view" + } + ] + }, + { + "type": "impl", + "name": "DeclarerImpl", + "interface_name": "openzeppelin::account::interface::IDeclarer" + }, + { + "type": "interface", + "name": "openzeppelin::account::interface::IDeclarer", + "items": [ + { + "type": "function", + "name": "__validate_declare__", + "inputs": [{ "name": "class_hash", "type": "core::felt252" }], + "outputs": [{ "type": "core::felt252" }], + "state_mutability": "view" + } + ] + }, + { + "type": "impl", + "name": "SRC5Impl", + "interface_name": "openzeppelin::introspection::interface::ISRC5" + }, + { + "type": "enum", + "name": "core::bool", + "variants": [ + { "name": "False", "type": "()" }, + { "name": "True", "type": "()" } + ] + }, + { + "type": "interface", + "name": "openzeppelin::introspection::interface::ISRC5", + "items": [ + { + "type": "function", + "name": "supports_interface", + "inputs": [{ "name": "interface_id", "type": "core::felt252" }], + "outputs": [{ "type": "core::bool" }], + "state_mutability": "view" + } + ] + }, + { + "type": "impl", + "name": "SRC5CamelImpl", + "interface_name": "openzeppelin::introspection::interface::ISRC5Camel" + }, + { + "type": "interface", + "name": "openzeppelin::introspection::interface::ISRC5Camel", + "items": [ + { + "type": "function", + "name": "supportsInterface", + "inputs": [{ "name": "interfaceId", "type": "core::felt252" }], + "outputs": [{ "type": "core::bool" }], + "state_mutability": "view" + } + ] + }, + { + "type": "function", + "name": "get_public_key", + "inputs": [], + "outputs": [{ "type": "core::felt252" }], + "state_mutability": "view" + }, + { + "type": "function", + "name": "set_public_key", + "inputs": [{ "name": "new_public_key", "type": "core::felt252" }], + "outputs": [], + "state_mutability": "external" + }, + { + "type": "function", + "name": "getPublicKey", + "inputs": [], + "outputs": [{ "type": "core::felt252" }], + "state_mutability": "view" + }, + { + "type": "function", + "name": "setPublicKey", + "inputs": [{ "name": "newPublicKey", "type": "core::felt252" }], + "outputs": [], + "state_mutability": "external" + }, + { + "type": "constructor", + "name": "constructor", + "inputs": [{ "name": "_public_key", "type": "core::felt252" }] + }, + { + "type": "function", + "name": "__validate_deploy__", + "inputs": [ + { "name": "class_hash", "type": "core::felt252" }, + { "name": "contract_address_salt", "type": "core::felt252" }, + { "name": "_public_key", "type": "core::felt252" } + ], + "outputs": [{ "type": "core::felt252" }], + "state_mutability": "view" + }, + { + "type": "event", + "name": "openzeppelin::account::account::Account::OwnerAdded", + "kind": "struct", + "members": [ + { "name": "new_owner_guid", "type": "core::felt252", "kind": "data" } + ] + }, + { + "type": "event", + "name": "openzeppelin::account::account::Account::OwnerRemoved", + "kind": "struct", + "members": [ + { + "name": "removed_owner_guid", + "type": "core::felt252", + "kind": "data" + } + ] + }, + { + "type": "event", + "name": "openzeppelin::account::account::Account::Event", + "kind": "enum", + "variants": [ + { + "name": "OwnerAdded", + "type": "openzeppelin::account::account::Account::OwnerAdded", + "kind": "nested" + }, + { + "name": "OwnerRemoved", + "type": "openzeppelin::account::account::Account::OwnerRemoved", + "kind": "nested" + } + ] + } + ] +} diff --git a/configs/genesis-assets/genesis.json b/configs/genesis-assets/genesis.json index d553da11e1..542b531def 100644 --- a/configs/genesis-assets/genesis.json +++ b/configs/genesis-assets/genesis.json @@ -7,6 +7,10 @@ [ "0x01a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", "0x0029787a427a423ffc5986d43e630077a176e4391fcef3ebf36014b154069ae4" + ], + [ + "0x04c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", + "0x06910afff92798e29b93649f7627cd34a852e0f9b04b52c51850b438a730224e" ] ], "contract_classes": [ @@ -24,18 +28,14 @@ "version": 0 } ], - [ - "0x0424b7f61e3c5dfd74400d96fdea7e1f0bf2757f31df04387eaa957f095dd7b9", - { "path": "genesis-assets/Proxy.json", "version": 0 } - ], [ "0x2c2b8f559e1221468140ad7b2352b1a5be32660d0bf1a3ae3a054a4ec5254e4", - { "path": "genesis-assets/Account.json", "version": 0 } + { "path": "genesis-assets/BraavosAccount.json", "version": 0 } ], [ "0x5aa23d5bb71ddaa783da7ea79d405315bafa7cf0387a74f4593578c3e9e6570", { - "path": "genesis-assets/AccountBaseImpl.json", + "path": "genesis-assets/BraavosAccountBaseImpl.json", "version": 0 } ], @@ -48,7 +48,7 @@ ], [ "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", - { "path": "genesis-assets/Proxy.json", "version": 0 } + { "path": "genesis-assets/BraavosProxy.json", "version": 0 } ], [ "0x006280083f8c2a2db9f737320d5e3029b380e0e820fe24b8d312a6a34fdba0cd", @@ -93,11 +93,18 @@ } ], [ - "0x0029787a427a423ffc5986d43e630077a176e4391fcef3ebf36014b154069ae4", + "0x01a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", { "path": "genesis-assets/ArgentAccountCairoOne.casm.json", "version": 1 } + ], + [ + "0x04c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", + { + "path": "genesis-assets/OpenZeppelinAccountCairoOne.casm.json", + "version": 1 + } ] ], "contracts": [ diff --git a/configs/index.json b/configs/index.json index d68577dd74..0bcc5df8ff 100644 --- a/configs/index.json +++ b/configs/index.json @@ -2,64 +2,72 @@ "remote_base_path": "https://raw.githubusercontent.com/keep-starknet-strange/madara/main/configs/", "genesis_assets": [ { - "name": "Account.json", - "md5": "bbdfc1b69f76e9c2784db6d8b697dc56" + "name": "BraavosAccount.json", + "sha3_256": "60230bf6e005c242d8c871e5095f3c4d4d8f2b421c2a8fe26e34b833dd0c989e" }, { - "name": "AccountBaseImpl.json", - "md5": "517db50da627d5cf290aa53c402cea39" + "name": "BraavosAccountBaseImpl.json", + "sha3_256": "13b917634166e8c0e229a92de3ea51309121c75bfdb457803549dc24a8f5a53d" }, { "name": "ArgentAccount.json", - "md5": "fb96b0c9993878c6a5a5cabf8ce9b3c9" + "sha3_256": "c84648bb4ef70513be3aacea5f5a1bc64dd9dcad0662978e0acc7590754d8bd9" }, { "name": "CallAggregator.json", - "md5": "3f418be1aab5ebd4a591e815af65533a" + "sha3_256": "8c653ded4d1917ba878d30193c4a7c4c62cc9454a0a990a695a97b757bad1c7f" }, { "name": "ERC20.json", - "md5": "bb4b9492b9ac173cc8648899f82fb4b5" + "sha3_256": "4855ca0abaf813d36eec3a556de5314ac700646ba28becda4632b1c7748283b2" }, { "name": "ERC721.json", - "md5": "921c01faed5df5b24a80e52a3b469330" + "sha3_256": "8189c5f2448bfe96343d98681313597e2c732c25a601f46948f0837fa99d0c10" }, { "name": "genesis.json", - "md5": "8b36630988032b77d747b389080175ff" + "sha3_256": "f5b4f86131397400b3dca0a39f5df1627a85c2a6f611e81f0081ad8dc462ce95" }, { "name": "NoValidateAccount.casm.json", - "md5": "a6d73f38cec68964187e7c5a217dcac2" + "sha3_256": "023592635fd3a534ec6c45b49e442b72d24994e2b19524dfbff4bb8540c53876" }, { "name": "NoValidateAccount.json", - "md5": "8049765b03c864c1f743ebcfbac0b721" + "sha3_256": "c33991e486f6afb575fcaa8c643e0978444422801a92d5173c108b1726a94a52" }, { "name": "OpenzeppelinAccount.json", - "md5": "afac329e2b9d0525dd0e481591a0e98b" + "sha3_256": "71eba832aee6e48bb1028c62c9862ef75f5811044331100582192d2a20e5b65b" }, { - "name": "Proxy.json", - "md5": "cd2bf3a51f319124f7506327ccd4045d" + "name": "BraavosProxy.json", + "sha3_256": "cbfcff58ba4de538e1c369c886f6a6207a6b4c85dcd40e91cc670b0900763c9b" }, { "name": "test.json", - "md5": "3b96fc40d4fee4921c0ee44f3af5cec5" + "sha3_256": "0687b75f03b6c3c998fd51b0748bc0dde875080a69095b39e3987bd6fd425c2a" }, { "name": "UniversalDeployer.json", - "md5": "d917baa8b1455f946d095d467dcdba47" + "sha3_256": "ba6680986e5ec7590ec8205bbfb0b71bc93a8d221faeb3d597ed293d1a6f9206" }, { "name": "ArgentAccountCairoOne.json", - "md5": "6f245cc2e6d8e03fec53d363872d2b9c" + "sha3_256": "6cd527da0953b22f5af3613c248133777a3d08408a2c1e8bb4e23b4c96f7d006" }, { "name": "ArgentAccountCairoOne.casm.json", - "md5": "27978b53c8589808be0347879a66da0d" + "sha3_256": "65cc25c726ae33deb94c8e9f6ac1cbe526d40dcdda8e7b0ebbed56cc19ed61d9" + }, + { + "name": "OpenZeppelinAccountCairoOne.casm.json", + "sha3_256": "906e3ff2522fa7c70072da2ee4cf6462ad4604f1748347fd53eccb035d80af40" + }, + { + "name": "OpenZeppelinAccountCairoOne.sierra.json", + "sha3_256": "145fdf2668cf6c36deb295ceea57c6005e43dd7b36be26d020928d1cc3462b5e" } ] } diff --git a/crates/client/commitment-state-diff/Cargo.toml b/crates/client/commitment-state-diff/Cargo.toml index 93d4a42ec0..3bb6e9dc06 100644 --- a/crates/client/commitment-state-diff/Cargo.toml +++ b/crates/client/commitment-state-diff/Cargo.toml @@ -14,7 +14,7 @@ sp-blockchain = { workspace = true } sp-runtime = { workspace = true, default-features = true } # Madara -mp-commitments = { workspace = true, default-features = true } +mc-db = { workspace = true, default-features = true } mp-digest-log = { workspace = true, default-features = true } mp-felt = { workspace = true, default-features = true } mp-hashers = { workspace = true, default-features = true } diff --git a/crates/client/commitment-state-diff/src/lib.rs b/crates/client/commitment-state-diff/src/lib.rs index 3a3faba7ff..3902d97011 100644 --- a/crates/client/commitment-state-diff/src/lib.rs +++ b/crates/client/commitment-state-diff/src/lib.rs @@ -16,17 +16,27 @@ use sp_blockchain::HeaderBackend; use sp_runtime::traits::{Block as BlockT, Header}; use starknet_api::api_core::{ClassHash, CompiledClassHash, ContractAddress, Nonce, PatriciaKey}; use starknet_api::block::BlockHash; -use starknet_api::hash::StarkFelt; +use starknet_api::hash::{StarkFelt, StarkHash}; use starknet_api::state::{StorageKey as StarknetStorageKey, ThinStateDiff}; use thiserror::Error; -pub struct BlockDAData(pub BlockHash, pub ThinStateDiff, pub usize); +#[derive(Clone)] +pub struct BlockDAData { + pub block_hash: BlockHash, + pub state_diff: ThinStateDiff, + pub num_addr_accessed: usize, + pub block_number: u64, + pub config_hash: StarkHash, + pub new_state_root: StarkHash, + pub previous_state_root: StarkHash, +} pub struct CommitmentStateDiffWorker { client: Arc, storage_event_stream: StorageEventStream, tx: mpsc::Sender, msg: Option, + backend: Arc>, phantom: PhantomData, } @@ -34,11 +44,11 @@ impl CommitmentStateDiffWorker where C: BlockchainEvents, { - pub fn new(client: Arc, tx: mpsc::Sender) -> Self { + pub fn new(client: Arc, backend: Arc>, tx: mpsc::Sender) -> Self { let storage_event_stream = client .storage_changes_notification_stream(None, None) .expect("the node storage changes notification stream should be up and running"); - Self { client, storage_event_stream, tx, msg: Default::default(), phantom: PhantomData } + Self { client, storage_event_stream, tx, msg: Default::default(), backend, phantom: PhantomData } } } @@ -66,7 +76,11 @@ where Poll::Ready(Some(storage_notification)) => { let block_hash = storage_notification.block; - match build_commitment_state_diff::(self_as_mut.client.clone(), storage_notification) { + match build_commitment_state_diff::( + self_as_mut.client.clone(), + self_as_mut.backend.clone(), + storage_notification, + ) { Ok(msg) => self_as_mut.msg = Some(msg), Err(e) => { log::error!( @@ -119,12 +133,13 @@ pub enum BuildCommitmentStateDiffError { BlockNotFound, #[error("digest log not found")] DigestLogNotFound(#[from] mp_digest_log::FindLogError), - #[error("conversion error")] - ConversionError, + #[error("failed to get config hash")] + FailedToGetConfigHash(#[from] sp_api::ApiError), } fn build_commitment_state_diff( client: Arc, + backend: Arc>, storage_notification: StorageNotification, ) -> Result where @@ -133,13 +148,6 @@ where C: HeaderBackend, H: HasherT, { - let starknet_block_hash = { - let header = client.header(storage_notification.block)?.ok_or(BuildCommitmentStateDiffError::BlockNotFound)?; - let digest = header.digest(); - let block = mp_digest_log::find_starknet_block(digest)?; - block.header().hash::().into() - }; - let mut accessed_addrs: IndexSet = IndexSet::new(); let mut commitment_state_diff = ThinStateDiff { declared_classes: IndexMap::new(), @@ -218,7 +226,24 @@ where } } - Ok(BlockDAData(starknet_block_hash, commitment_state_diff, accessed_addrs.len())) + let current_block = { + let header = client.header(storage_notification.block)?.ok_or(BuildCommitmentStateDiffError::BlockNotFound)?; + let digest = header.digest(); + mp_digest_log::find_starknet_block(digest)? + }; + + let config_hash = client.runtime_api().config_hash(storage_notification.block)?; + + Ok(BlockDAData { + block_hash: current_block.header().hash::().into(), + state_diff: commitment_state_diff, + num_addr_accessed: accessed_addrs.len(), + block_number: current_block.header().block_number, + config_hash, + // TODO: fix when we implement state root + new_state_root: backend.temporary_global_state_root_getter(), + previous_state_root: backend.temporary_global_state_root_getter(), + }) } pub async fn verify_l2(mut rx: mpsc::Receiver) { diff --git a/crates/client/data-availability/Cargo.toml b/crates/client/data-availability/Cargo.toml deleted file mode 100644 index e3b1f2829d..0000000000 --- a/crates/client/data-availability/Cargo.toml +++ /dev/null @@ -1,71 +0,0 @@ -[package] -name = "mc-data-availability" -version = "0.1.0" -description = "Starknet data availability." -homepage = "https://github.com/keep-starknet-strange/madara" -edition = "2021" -license = "MIT" -publish = false -repository = "https://github.com/keep-starknet-strange/madara" - -[package.metadata.docs.rs] -targets = ["x86_64-unknown-linux-gnu"] - -[dependencies] -anyhow = { workspace = true } -async-trait = { workspace = true } -futures = "0.3.21" -indexmap = { workspace = true } -jsonrpsee = { version = "0.20.0", features = [ - "http-client", - "ws-client", - "macros", -] } -log = { workspace = true } -reqwest = { version = "0.11.18", features = ["blocking", "json"] } -serde = { workspace = true, default-features = true } -serde_json = { workspace = true, default-features = true } -thiserror = { workspace = true } -tokio = { version = "1", features = ["full"] } -url = { workspace = true } -uuid = { version = "1.4.0", features = ["v4", "serde"] } - -# Substrate -sc-client-api = { workspace = true } -sp-api = { workspace = true, features = ["std"] } -sp-blockchain = { workspace = true } -sp-core = { workspace = true, features = ["std"] } -sp-io = { workspace = true, features = ["std"] } -sp-runtime = { workspace = true, features = ["std"] } - -# Starknet -blockifier = { workspace = true, default-features = true } -mc-commitment-state-diff = { workspace = true, default-features = true } -mc-db = { workspace = true, default-features = true } -pallet-starknet-runtime-api = { workspace = true, features = ["std"] } -starknet_api = { workspace = true, default-features = true } - -# Ethereum -ethers = { workspace = true } - -# Madara -mp-digest-log = { workspace = true, default-features = true } -mp-hashers = { workspace = true, default-features = true } -mp-storage = { workspace = true, default-features = true } - -# Prometheus -prometheus-endpoint = { workspace = true } - -# Optional -avail-subxt = { git = "https://github.com/availproject/avail", version = "0.4.0", tag = "v1.8.0.0", optional = true } -celestia-rpc = { git = "https://github.com/eigerco/lumina", rev = "ccc5b9bfeac632cccd32d35ecb7b7d51d71fbb87", optional = true } -celestia-types = { git = "https://github.com/eigerco/lumina", rev = "ccc5b9bfeac632cccd32d35ecb7b7d51d71fbb87", optional = true } -clap = { workspace = true, features = ["derive"], optional = true } -sp-keyring = { workspace = true, optional = true } -subxt = { workspace = true, optional = true } - -[features] -default = [] -clap = ["dep:clap"] -avail = ["dep:avail-subxt", "dep:sp-keyring", "dep:subxt"] -celestia = ["dep:celestia-rpc", "dep:celestia-types"] diff --git a/crates/client/data-availability/src/lib.rs b/crates/client/data-availability/src/lib.rs deleted file mode 100644 index 6463b0ad86..0000000000 --- a/crates/client/data-availability/src/lib.rs +++ /dev/null @@ -1,234 +0,0 @@ -#[cfg(feature = "avail")] -pub mod avail; -#[cfg(feature = "celestia")] -pub mod celestia; -pub mod ethereum; -mod sharp; -pub mod utils; - -mod da_metrics; - -use std::collections::HashMap; -use std::fmt::Display; -use std::marker::PhantomData; -use std::sync::Arc; -use std::time; - -use anyhow::{anyhow, Result}; -use async_trait::async_trait; -use ethers::types::{I256, U256}; -use futures::channel::mpsc; -use futures::StreamExt; -use mc_commitment_state_diff::BlockDAData; -use mp_hashers::HasherT; -use prometheus_endpoint::prometheus::core::AtomicU64; -use prometheus_endpoint::{register, Gauge, Opts, Registry as PrometheusRegistry}; -use serde::{Deserialize, Serialize}; -use sp_runtime::traits::Block as BlockT; -use starknet_api::block::BlockHash; -use starknet_api::state::ThinStateDiff; -use utils::state_diff_to_calldata; - -use crate::da_metrics::DaMetrics; - -pub struct DataAvailabilityWorker(PhantomData<(B, H)>); - -#[derive(Debug, Copy, Clone, PartialEq, Eq)] -#[cfg_attr(feature = "clap", derive(clap::ValueEnum))] -pub enum DaLayer { - #[cfg(feature = "celestia")] - Celestia, - Ethereum, - #[cfg(feature = "avail")] - Avail, -} - -/// Data availability modes in which Madara can be initialized. -/// -/// Default only mode currently implemented is Sovereing. -#[derive(Debug, Copy, Clone, PartialEq, Eq, Serialize, Deserialize, Default)] -pub enum DaMode { - /// Full Validity Rollup - /// - /// Generates a Cairo execution trace of the StarknetOS - /// run for the given block as it is applied to the current Madara state. - /// Once this execution trace is proved to the L1 Verifier(i.e. [Ethereum](https://goerli.etherscan.io/address/0x8f97970aC5a9aa8D130d35146F5b59c4aef57963)) - /// the relevant [state diff](https://docs.starknet.io/documentation/architecture_and_concepts/Network_Architecture/on-chain-data) can be written and validated against the on-chain - /// proof verification of the block propagation. - #[serde(rename = "validity")] - Validity, - /// Hybrid Volition - /// - /// Volitions allow applications and users to interoperate between on-chain data and off-chain - /// da. Although full specs are not currently available, this mode will entail generating - /// a StarknetOS execution trace for data elected to be on-chain and interaction w/ the prover - /// will be necessary. - #[serde(rename = "volition")] - Volition, - /// Sovereign Rollup - /// - /// Sovereign state diffs are untethered to an accompanying validity proof therefore - /// they can simply be published to any da solution available. As this solution does not - /// require an execution trace to be proved we can simply parse the state diff from the - /// storage changes of the block. - #[serde(rename = "sovereign")] - #[default] - Sovereign, -} - -impl Display for DaMode { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - match self { - DaMode::Validity => Display::fmt("Validity", f), - DaMode::Volition => Display::fmt("Volition", f), - DaMode::Sovereign => Display::fmt("Sovereign", f), - } - } -} - -#[async_trait] -pub trait DaClient: Send + Sync { - fn get_mode(&self) -> DaMode; - async fn last_published_state(&self) -> Result; - async fn publish_state_diff(&self, state_diff: Vec) -> Result<()>; - fn get_da_metric_labels(&self) -> HashMap; -} - -/// The client worker for DA related tasks -/// -/// Listen to new block state diff and spawn new threads to execute each block flow concurently. -/// The flow goes as follow: -/// 1. Prove. Do nothing if node is run in sovereign mode -/// 2. Updata -impl DataAvailabilityWorker -where - B: BlockT, - H: HasherT, -{ - pub async fn prove_current_block( - da_client: Arc, - prometheus: Option, - mut state_diffs_rx: mpsc::Receiver, - madara_backend: Arc>, - ) { - let da_metrics = prometheus.as_ref().and_then(|registry| DaMetrics::register(registry).ok()); - if let Some(registry) = prometheus.as_ref() { - let gauge = Gauge::::with_opts( - Opts::new("madara_da_layer_info", "Information about the data availability layer used") - .const_labels(da_client.get_da_metric_labels()), - ); - match gauge { - Ok(gauge) => match register(gauge, registry) { - Ok(_) => (), - Err(e) => { - log::error!("failed to register gauge for da layer info metrics: {e}"); - } - }, - Err(e) => { - log::error!("failed to create gauge for da layer info metrics: {e}"); - } - } - } - while let Some(BlockDAData(starknet_block_hash, csd, num_addr_accessed)) = state_diffs_rx.next().await { - log::info!("Received state diff for block {starknet_block_hash}"); - - let da_metrics = da_metrics.clone(); - let da_client = da_client.clone(); - let madara_backend = madara_backend.clone(); - tokio::spawn(async move { - let prove_state_start = time::Instant::now(); - - if let Err(err) = - prove(da_client.get_mode(), starknet_block_hash, &csd, num_addr_accessed, madara_backend.clone()) - .await - { - log::error!("Failed to prove block: {err}"); - } - let prove_state_end = time::Instant::now(); - - if let Err(err) = - update_state::(madara_backend, da_client, starknet_block_hash, csd, num_addr_accessed).await - { - log::error!("Failed to update the DA state: {err}"); - }; - let update_state_end = time::Instant::now(); - - if let Some(da_metrics) = da_metrics { - da_metrics - .state_proofs - .observe(prove_state_end.saturating_duration_since(prove_state_start).as_secs_f64()); - da_metrics - .state_updates - .observe(update_state_end.saturating_duration_since(prove_state_end).as_secs_f64()); - } - }); - } - } -} - -pub async fn prove( - da_mode: DaMode, - block_hash: BlockHash, - _state_diff: &ThinStateDiff, - _num_addr_accessed: usize, - madara_backend: Arc>, -) -> Result<(), anyhow::Error> { - match da_mode { - DaMode::Validity => { - // Submit the Starknet OS PIE - // TODO: Validity Impl - // run the Starknet OS with the Cairo VM - // extract the PIE from the Cairo VM run - // pass the PIE to `submit_pie` and zip/base64 internal - if let Ok(job_resp) = sharp::submit_pie("TODO") { - log::info!("Proof job submitted with key '{}'", job_resp.cairo_job_key); - // Store the cairo job key - madara_backend - .da() - .update_cairo_job(&block_hash, job_resp.cairo_job_key) - .map_err(|e| anyhow!("{e}"))?; - } - } - _ => { - log::info!("No proof required for current DA mode ({da_mode}).") - } - } - - Ok(()) -} - -pub async fn update_state( - madara_backend: Arc>, - da_client: Arc, - starknet_block_hash: BlockHash, - csd: ThinStateDiff, - num_addr_accessed: usize, -) -> Result<(), anyhow::Error> { - // store the state diff - madara_backend - .da() - .store_state_diff(&starknet_block_hash, state_diff_to_calldata(csd, num_addr_accessed)) - .map_err(|e| anyhow!("{e}"))?; - - // Query last written state - // TODO: this value will be used to ensure the correct state diff is being written in - // Validity mode - let _last_published_state = da_client.last_published_state().await?; - - match da_client.get_mode() { - DaMode::Validity => { - // Check the SHARP status of last_proved + 1 - // Write the publish state diff of last_proved + 1 - log::info!("validity da mode not implemented"); - } - DaMode::Sovereign => match madara_backend.da().state_diff(&starknet_block_hash) { - Ok(state_diff) => { - da_client.publish_state_diff(state_diff).await.map_err(|e| anyhow!("DA PUBLISH ERROR: {e}"))?; - } - Err(e) => Err(anyhow!("could not pull state diff for block {starknet_block_hash}: {e}"))?, - }, - DaMode::Volition => log::info!("volition da mode not implemented"), - }; - - Ok(()) -} diff --git a/crates/client/db/src/lib.rs b/crates/client/db/src/lib.rs index aa26d5d9ea..b6d09b6e12 100644 --- a/crates/client/db/src/lib.rs +++ b/crates/client/db/src/lib.rs @@ -16,9 +16,11 @@ pub use error::DbError; mod mapping_db; pub use mapping_db::MappingCommitment; +use starknet_api::hash::StarkHash; mod da_db; mod db_opening_utils; mod messaging_db; +pub use messaging_db::LastSyncedEventBlock; mod meta_db; use std::marker::PhantomData; @@ -67,7 +69,7 @@ pub(crate) mod columns { pub mod static_keys { pub const CURRENT_SYNCING_TIPS: &[u8] = b"CURRENT_SYNCING_TIPS"; pub const LAST_PROVED_BLOCK: &[u8] = b"LAST_PROVED_BLOCK"; - pub const LAST_SYNCED_L1_BLOCK: &[u8] = b"LAST_SYNCED_L1_BLOCK"; + pub const LAST_SYNCED_L1_EVENT_BLOCK: &[u8] = b"LAST_SYNCED_L1_EVENT_BLOCK"; } /// The Madara client database backend @@ -143,4 +145,11 @@ impl Backend { pub fn messaging(&self) -> &Arc> { &self.messaging } + + /// In the future, we will compute the block global state root asynchronously in the client, + /// using the Starknet-Bonzai-trie. + /// That what replaces it for now :) + pub fn temporary_global_state_root_getter(&self) -> StarkHash { + Default::default() + } } diff --git a/crates/client/db/src/messaging_db.rs b/crates/client/db/src/messaging_db.rs index c8bb450203..5c22b59d3c 100644 --- a/crates/client/db/src/messaging_db.rs +++ b/crates/client/db/src/messaging_db.rs @@ -14,18 +14,37 @@ pub struct MessagingDb { pub(crate) _marker: PhantomData, } +#[derive(Encode, Decode)] +pub struct LastSyncedEventBlock { + pub block_number: u64, + pub event_index: u64, +} + +impl LastSyncedEventBlock { + pub fn new(block_number: u64, event_index: u64) -> Self { + LastSyncedEventBlock { block_number, event_index } + } +} + impl MessagingDb { - pub fn last_synced_l1_block(&self) -> Result { - match self.db.get(crate::columns::MESSAGING, crate::static_keys::LAST_SYNCED_L1_BLOCK) { - Some(raw) => Ok(u64::decode(&mut &raw[..])?), - None => Ok(0), + pub fn last_synced_l1_block_with_event(&self) -> Result { + match self.db.get(crate::columns::MESSAGING, crate::static_keys::LAST_SYNCED_L1_EVENT_BLOCK) { + Some(raw) => Ok(LastSyncedEventBlock::decode(&mut &raw[..])?), + None => Ok(LastSyncedEventBlock::new(0, 0)), } } - pub fn update_last_synced_l1_block(&self, l1_block_number: &u64) -> Result<(), DbError> { + pub fn update_last_synced_l1_block_with_event( + &self, + last_synced_event_block: &LastSyncedEventBlock, + ) -> Result<(), DbError> { let mut transaction = sp_database::Transaction::new(); - transaction.set(crate::columns::MESSAGING, crate::static_keys::LAST_SYNCED_L1_BLOCK, &l1_block_number.encode()); + transaction.set( + crate::columns::MESSAGING, + crate::static_keys::LAST_SYNCED_L1_EVENT_BLOCK, + &last_synced_event_block.encode(), + ); self.db.commit(transaction)?; diff --git a/crates/client/deoxys/src/state_updates.rs b/crates/client/deoxys/src/state_updates.rs index b3357b85a9..3c728b3817 100644 --- a/crates/client/deoxys/src/state_updates.rs +++ b/crates/client/deoxys/src/state_updates.rs @@ -1,15 +1,7 @@ -use blockifier::state::cached_state::CommitmentStateDiff; -use indexmap::map::Entry; -use indexmap::IndexMap; -use mc_commitment_state_diff::BuildCommitmentStateDiffError; use mp_felt::Felt252Wrapper; -use mp_hashers::HasherT; use parity_scale_codec::{Decode, Encode, Error, Input, Output}; -use starknet_api::api_core::{ContractAddress, Nonce, PatriciaKey}; -use starknet_api::state::StorageKey as StarknetStorageKey; use starknet_ff::FieldElement; use starknet_providers::sequencer::models::state_update::{DeclaredContract, DeployedContract, StateDiff, StorageDiff}; -use starknet_providers::sequencer::models::StateUpdate; #[derive(Debug)] #[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] @@ -238,82 +230,82 @@ impl Decode for StateUpdateWrapper { } } -pub fn commitment_state_diff( - state_update: &StateUpdate, -) -> Result<(Felt252Wrapper, CommitmentStateDiff), BuildCommitmentStateDiffError> -where - H: HasherT, -{ - let starknet_block_hash = match state_update.block_hash { - Some(hash) => hash.try_into().map_err(|_| BuildCommitmentStateDiffError::ConversionError)?, - None => return Err(BuildCommitmentStateDiffError::BlockNotFound), - }; - - let mut commitment_state_diff = CommitmentStateDiff { - address_to_class_hash: Default::default(), - address_to_nonce: Default::default(), - storage_updates: Default::default(), - class_hash_to_compiled_class_hash: Default::default(), - }; - - for (address, diffs) in &state_update.state_diff.storage_diffs { - let contract_address = ContractAddress(PatriciaKey( - Felt252Wrapper::from(*address).try_into().map_err(|_| BuildCommitmentStateDiffError::ConversionError)?, - )); - for storage_diff in diffs { - let storage_key = StarknetStorageKey(PatriciaKey( - Felt252Wrapper::from(storage_diff.key) - .try_into() - .map_err(|_| BuildCommitmentStateDiffError::ConversionError)?, - )); - let value = storage_diff.value; - - match commitment_state_diff.storage_updates.entry(contract_address) { - Entry::Occupied(mut entry) => { - entry.get_mut().insert( - storage_key, - Felt252Wrapper::from(value) - .try_into() - .map_err(|_| BuildCommitmentStateDiffError::ConversionError)?, - ); - } - Entry::Vacant(entry) => { - let mut contract_storage = IndexMap::default(); - contract_storage.insert( - storage_key, - Felt252Wrapper::from(value) - .try_into() - .map_err(|_| BuildCommitmentStateDiffError::ConversionError)?, - ); - entry.insert(contract_storage); - } - } - } - } - - // for contract in &state_update.state_diff.deployed_contracts { - // let contract_address = ContractAddress(PatriciaKey(contract.address.try_into().map_err(|_| - // BuildCommitmentStateDiffError::ConversionError)?)); let class_hash = - // ClassHash(contract.class_hash.try_into().map_err(|_| - // BuildCommitmentStateDiffError::ConversionError)?); let compiled_class_hash: - // CompiledClassHash = calculate_compiled_class_hash(&class_hash); - - // commitment_state_diff.address_to_class_hash.insert(contract_address, class_hash); - // commitment_state_diff.class_hash_to_compiled_class_hash.insert(class_hash, - // compiled_class_hash); } - - for nonce in &state_update.state_diff.nonces { - let contract_address = ContractAddress(PatriciaKey( - Felt252Wrapper::from(*nonce.0).try_into().map_err(|_| BuildCommitmentStateDiffError::ConversionError)?, - )); - let nonce_value = Nonce( - Felt252Wrapper::from(*nonce.1).try_into().map_err(|_| BuildCommitmentStateDiffError::ConversionError)?, - ); - commitment_state_diff.address_to_nonce.insert(contract_address, nonce_value); - } +// pub fn commitment_state_diff( +// state_update: &StateUpdate, +// ) -> Result<(Felt252Wrapper, CommitmentStateDiff), BuildCommitmentStateDiffError> +// where +// H: HasherT, +// { +// let starknet_block_hash = match state_update.block_hash { +// Some(hash) => hash.try_into().map_err(|_| +// BuildCommitmentStateDiffError::ConversionError)?, None => return +// Err(BuildCommitmentStateDiffError::BlockNotFound), }; + +// let mut commitment_state_diff = CommitmentStateDiff { +// address_to_class_hash: Default::default(), +// address_to_nonce: Default::default(), +// storage_updates: Default::default(), +// class_hash_to_compiled_class_hash: Default::default(), +// }; - Ok((starknet_block_hash, commitment_state_diff)) -} +// for (address, diffs) in &state_update.state_diff.storage_diffs { +// let contract_address = ContractAddress(PatriciaKey( +// Felt252Wrapper::from(*address).try_into().map_err(|_| +// BuildCommitmentStateDiffError::ConversionError)?, )); +// for storage_diff in diffs { +// let storage_key = StarknetStorageKey(PatriciaKey( +// Felt252Wrapper::from(storage_diff.key) +// .try_into() +// .map_err(|_| BuildCommitmentStateDiffError::ConversionError)?, +// )); +// let value = storage_diff.value; + +// match commitment_state_diff.storage_updates.entry(contract_address) { +// Entry::Occupied(mut entry) => { +// entry.get_mut().insert( +// storage_key, +// Felt252Wrapper::from(value) +// .try_into() +// .map_err(|_| BuildCommitmentStateDiffError::ConversionError)?, +// ); +// } +// Entry::Vacant(entry) => { +// let mut contract_storage = IndexMap::default(); +// contract_storage.insert( +// storage_key, +// Felt252Wrapper::from(value) +// .try_into() +// .map_err(|_| BuildCommitmentStateDiffError::ConversionError)?, +// ); +// entry.insert(contract_storage); +// } +// } +// } +// } + +// // for contract in &state_update.state_diff.deployed_contracts { +// // let contract_address = +// ContractAddress(PatriciaKey(contract.address.try_into().map_err(|_| // BuildCommitmentStateDiffError::ConversionError)? +// )); let class_hash = // ClassHash(contract.class_hash.try_into().map_err(|_| +// // BuildCommitmentStateDiffError::ConversionError)?); let compiled_class_hash: +// // CompiledClassHash = calculate_compiled_class_hash(&class_hash); + +// // commitment_state_diff.address_to_class_hash.insert(contract_address, class_hash); +// // commitment_state_diff.class_hash_to_compiled_class_hash.insert(class_hash, +// // compiled_class_hash); } + +// for nonce in &state_update.state_diff.nonces { +// let contract_address = ContractAddress(PatriciaKey( +// Felt252Wrapper::from(*nonce.0).try_into().map_err(|_| +// BuildCommitmentStateDiffError::ConversionError)?, )); +// let nonce_value = Nonce( +// Felt252Wrapper::from(*nonce.1).try_into().map_err(|_| +// BuildCommitmentStateDiffError::ConversionError)?, ); +// commitment_state_diff.address_to_nonce.insert(contract_address, nonce_value); +// } + +// Ok((starknet_block_hash, commitment_state_diff)) +// } // Get L2 state commitment of a Block from a CommitmentStateDiff // pub async fn state_commitment(state_update: &StateUpdate) -> Felt252Wrapper { diff --git a/crates/client/l1-messages/src/worker.rs b/crates/client/l1-messages/src/worker.rs index f7e66c4e38..007c40ce9a 100644 --- a/crates/client/l1-messages/src/worker.rs +++ b/crates/client/l1-messages/src/worker.rs @@ -34,7 +34,7 @@ pub async fn run_worker( let l1_contract = L1Contract::new(*config.contract_address(), Arc::new(Provider::new(Http::new(config.provider().clone())))); - let last_synced_l1_block = match backend.messaging().last_synced_l1_block() { + let last_synced_event_block = match backend.messaging().last_synced_l1_block_with_event() { Ok(blknum) => blknum, Err(e) => { log::error!("⟠ Madara Messaging DB unavailable: {:?}", e); @@ -42,7 +42,7 @@ pub async fn run_worker( } }; - let events = l1_contract.events().from_block(last_synced_l1_block); + let events = l1_contract.events().from_block(last_synced_event_block.block_number); let mut event_stream = match events.stream_with_meta().await { Ok(stream) => stream, Err(e) => { @@ -59,7 +59,9 @@ pub async fn run_worker( meta.log_index ); - match process_l1_message(event, &client, &pool, &backend, &meta.block_number.as_u64()).await { + match process_l1_message(event, &client, &pool, &backend, &meta.block_number.as_u64(), &meta.log_index.as_u64()) + .await + { Ok(Some(tx_hash)) => { log::info!( "⟠ L1 Message from block: {:?}, transaction_hash: {:?}, log_index: {:?} submitted, transaction \ @@ -91,6 +93,7 @@ async fn process_l1_message( pool: &Arc

, backend: &Arc>, l1_block_number: &u64, + event_index: &u64, ) -> Result, L1MessagesWorkerError> where B: BlockT, @@ -132,10 +135,16 @@ where L1MessagesWorkerError::SubmitTxError(e) })?; - backend.messaging().update_last_synced_l1_block(l1_block_number).map_err(|e| { - log::error!("⟠ Failed to save last L1 synced block: {:?}", e); - L1MessagesWorkerError::DatabaseError(e) - })?; + backend + .messaging() + .update_last_synced_l1_block_with_event(&mc_db::LastSyncedEventBlock::new( + l1_block_number.to_owned(), + event_index.to_owned(), + )) + .map_err(|e| { + log::error!("⟠ Failed to save last L1 synced block: {:?}", e); + L1MessagesWorkerError::DatabaseError(e) + })?; Ok(Some(tx_hash)) } diff --git a/crates/client/rpc-core/src/lib.rs b/crates/client/rpc-core/src/lib.rs index 12f1baea44..252ff159fc 100644 --- a/crates/client/rpc-core/src/lib.rs +++ b/crates/client/rpc-core/src/lib.rs @@ -14,7 +14,6 @@ use serde_with::serde_as; pub mod utils; -use mp_simulations::{SimulatedTransaction, SimulationFlag}; use mp_transactions::TransactionStatus; use pallet_starknet::genesis_loader::PredeployedAccount; use starknet_core::serde::unsigned_field_element::UfeHex; @@ -23,7 +22,7 @@ use starknet_core::types::{ BroadcastedInvokeTransaction, BroadcastedTransaction, ContractClass, DeclareTransactionResult, DeployAccountTransactionResult, EventFilterWithPage, EventsPage, FeeEstimate, FieldElement, FunctionCall, InvokeTransactionResult, MaybePendingBlockWithTxHashes, MaybePendingBlockWithTxs, MaybePendingTransactionReceipt, - StateUpdate, SyncStatusType, Transaction, + SimulatedTransaction, SimulationFlag, StateUpdate, SyncStatusType, Transaction, }; #[serde_as] diff --git a/crates/client/rpc/Cargo.toml b/crates/client/rpc/Cargo.toml index 899a80a717..6abfee626b 100644 --- a/crates/client/rpc/Cargo.toml +++ b/crates/client/rpc/Cargo.toml @@ -47,6 +47,7 @@ starknet_api = { workspace = true, default-features = false } # Others anyhow = { workspace = true } hex = { workspace = true, default-features = true } +itertools = { workspace = true } jsonrpsee = { workspace = true, default-features = true, features = [ "server", "macros", diff --git a/crates/client/rpc/src/lib.rs b/crates/client/rpc/src/lib.rs index e29a416915..0501cf5b05 100644 --- a/crates/client/rpc/src/lib.rs +++ b/crates/client/rpc/src/lib.rs @@ -6,6 +6,7 @@ mod constants; mod errors; mod events; mod madara_backend_client; +mod trace_api; mod types; use std::marker::PhantomData; use std::sync::Arc; @@ -25,9 +26,7 @@ use mc_storage::OverrideHandle; use mp_block::BlockStatus; use mp_felt::{Felt252Wrapper, Felt252WrapperError}; use mp_hashers::HasherT; -use mp_simulations::{SimulatedTransaction, SimulationFlag, SimulationFlags}; use mp_transactions::compute_hash::ComputeTransactionHash; -use mp_transactions::execution::StarknetRPCExecutionResources; use mp_transactions::to_starknet_core_transaction::to_starknet_core_tx; use mp_transactions::{TransactionStatus, UserTransaction}; use pallet_starknet_runtime_api::{ConvertTransactionRuntimeApi, StarknetRuntimeApi}; @@ -49,9 +48,9 @@ use starknet_core::types::{ BlockHashAndNumber, BlockId, BlockTag, BlockWithTxHashes, BlockWithTxs, BroadcastedDeclareTransaction, BroadcastedDeployAccountTransaction, BroadcastedInvokeTransaction, BroadcastedTransaction, ContractClass, DeclareTransactionReceipt, DeclareTransactionResult, DeployAccountTransactionReceipt, - DeployAccountTransactionResult, DeployTransactionReceipt, EventFilterWithPage, EventsPage, ExecutionResult, - FeeEstimate, FieldElement, FunctionCall, Hash256, InvokeTransactionReceipt, InvokeTransactionResult, - L1HandlerTransactionReceipt, MaybePendingBlockWithTxHashes, MaybePendingBlockWithTxs, + DeployAccountTransactionResult, DeployTransactionReceipt, EventFilterWithPage, EventsPage, ExecutionResources, + ExecutionResult, FeeEstimate, FieldElement, FunctionCall, Hash256, InvokeTransactionReceipt, + InvokeTransactionResult, L1HandlerTransactionReceipt, MaybePendingBlockWithTxHashes, MaybePendingBlockWithTxs, MaybePendingTransactionReceipt, StateDiff, StateUpdate, SyncStatus, SyncStatusType, Transaction, TransactionExecutionStatus, TransactionFinalityStatus, TransactionReceipt, }; @@ -1168,7 +1167,7 @@ where let parent_block = get_block_by_block_hash(self.client.as_ref(), substrate_parent_block_hash).unwrap_or_default(); - Felt252Wrapper::from(parent_block.header().global_state_root).into() + Felt252Wrapper::from(self.backend.temporary_global_state_root_getter()).into() } else { FieldElement::default() }; @@ -1466,9 +1465,6 @@ where } }; - // TODO(#1291): compute execution_resources correctly to the receipt - let execution_resources = StarknetRPCExecutionResources::default(); - // TODO(#1291): compute message hash correctly to L1HandlerTransactionReceipt let message_hash: Hash256 = Hash256::from_felt(&FieldElement::default()); @@ -1525,6 +1521,7 @@ where } } + // TODO: use actual execution ressources let receipt = match transaction { mp_transactions::Transaction::Declare(_) => TransactionReceipt::Declare(DeclareTransactionReceipt { transaction_hash, @@ -1535,7 +1532,17 @@ where messages_sent: messages.into_iter().map(message_conversion).collect(), events: events_converted, execution_result, - execution_resources: execution_resources.into(), + execution_resources: ExecutionResources { + steps: 0, + memory_holes: None, + range_check_builtin_applications: 0, + pedersen_builtin_applications: 0, + poseidon_builtin_applications: 0, + ec_op_builtin_applications: 0, + ecdsa_builtin_applications: 0, + bitwise_builtin_applications: 0, + keccak_builtin_applications: 0, + }, }), mp_transactions::Transaction::DeployAccount(tx) => { TransactionReceipt::DeployAccount(DeployAccountTransactionReceipt { @@ -1548,7 +1555,17 @@ where events: events_converted, contract_address: tx.get_account_address(), execution_result, - execution_resources: execution_resources.into(), + execution_resources: ExecutionResources { + steps: 0, + memory_holes: None, + range_check_builtin_applications: 0, + pedersen_builtin_applications: 0, + poseidon_builtin_applications: 0, + ec_op_builtin_applications: 0, + ecdsa_builtin_applications: 0, + bitwise_builtin_applications: 0, + keccak_builtin_applications: 0, + }, }) } mp_transactions::Transaction::Deploy(tx) => TransactionReceipt::Deploy(DeployTransactionReceipt { @@ -1561,7 +1578,17 @@ where events: events_converted, contract_address: tx.get_account_address(), execution_result, - execution_resources: execution_resources.into(), + execution_resources: ExecutionResources { + steps: 0, + memory_holes: None, + range_check_builtin_applications: 0, + pedersen_builtin_applications: 0, + poseidon_builtin_applications: 0, + ec_op_builtin_applications: 0, + ecdsa_builtin_applications: 0, + bitwise_builtin_applications: 0, + keccak_builtin_applications: 0, + }, }), mp_transactions::Transaction::Invoke(_) => TransactionReceipt::Invoke(InvokeTransactionReceipt { transaction_hash, @@ -1572,7 +1599,17 @@ where messages_sent: messages.into_iter().map(message_conversion).collect(), events: events_converted, execution_result, - execution_resources: execution_resources.into(), + execution_resources: ExecutionResources { + steps: 0, + memory_holes: None, + range_check_builtin_applications: 0, + pedersen_builtin_applications: 0, + poseidon_builtin_applications: 0, + ec_op_builtin_applications: 0, + ecdsa_builtin_applications: 0, + bitwise_builtin_applications: 0, + keccak_builtin_applications: 0, + }, }), mp_transactions::Transaction::L1Handler(_) => TransactionReceipt::L1Handler(L1HandlerTransactionReceipt { message_hash, @@ -1584,7 +1621,17 @@ where messages_sent: messages.into_iter().map(message_conversion).collect(), events: events_converted, execution_result, - execution_resources: execution_resources.into(), + execution_resources: ExecutionResources { + steps: 0, + memory_holes: None, + range_check_builtin_applications: 0, + pedersen_builtin_applications: 0, + poseidon_builtin_applications: 0, + ec_op_builtin_applications: 0, + ecdsa_builtin_applications: 0, + bitwise_builtin_applications: 0, + keccak_builtin_applications: 0, + }, }), }; @@ -1592,61 +1639,6 @@ where } } -#[async_trait] -#[allow(unused_variables)] -impl StarknetTraceRpcApiServer for Starknet -where - A: ChainApi + 'static, - B: BlockT, - BE: Backend + 'static, - G: GenesisProvider + Send + Sync + 'static, - C: HeaderBackend + BlockBackend + StorageProvider + 'static, - C: ProvideRuntimeApi, - C::Api: StarknetRuntimeApi + ConvertTransactionRuntimeApi, - P: TransactionPool + 'static, - H: HasherT + Send + Sync + 'static, -{ - async fn simulate_transactions( - &self, - block_id: BlockId, - transactions: Vec, - simulation_flags: Vec, - ) -> RpcResult> { - let substrate_block_hash = self.substrate_block_hash_from_starknet_block(block_id).map_err(|e| { - error!("'{e}'"); - StarknetRpcApiError::BlockNotFound - })?; - let best_block_hash = self.client.info().best_hash; - let chain_id = Felt252Wrapper(self.chain_id()?.0); - - let mut user_transactions = vec![]; - for tx in transactions { - let tx = tx.try_into().map_err(|e| { - error!("Failed to convert BroadcastedTransaction to UserTransaction: {e}"); - StarknetRpcApiError::InternalServerError - })?; - user_transactions.push(tx); - } - - let simulation_flags: SimulationFlags = simulation_flags.into(); - - let fee_estimates = self - .client - .runtime_api() - .simulate_transactions(substrate_block_hash, user_transactions, simulation_flags) - .map_err(|e| { - error!("Request parameters error: {e}"); - StarknetRpcApiError::InternalServerError - })? - .map_err(|e| { - error!("Failed to call function: {:#?}", e); - StarknetRpcApiError::ContractError - })?; - - Ok(fee_estimates) - } -} - async fn submit_extrinsic( pool: Arc

, best_block_hash: ::Hash, diff --git a/crates/client/rpc/src/trace_api.rs b/crates/client/rpc/src/trace_api.rs new file mode 100644 index 0000000000..4626a26ec3 --- /dev/null +++ b/crates/client/rpc/src/trace_api.rs @@ -0,0 +1,301 @@ +use blockifier::execution::entry_point::CallInfo; +use blockifier::transaction::errors::TransactionExecutionError; +use blockifier::transaction::objects::TransactionExecutionInfo; +use jsonrpsee::core::{async_trait, RpcResult}; +use log::error; +use mc_genesis_data_provider::GenesisProvider; +use mc_rpc_core::{StarknetReadRpcApiServer, StarknetTraceRpcApiServer}; +use mc_storage::StorageOverride; +use mp_felt::Felt252Wrapper; +use mp_hashers::HasherT; +use mp_simulations::{PlaceHolderErrorTypeForFailedStarknetExecution, SimulationFlags}; +use mp_transactions::TxType; +use pallet_starknet_runtime_api::{ConvertTransactionRuntimeApi, StarknetRuntimeApi}; +use sc_client_api::{Backend, BlockBackend, StorageProvider}; +use sc_transaction_pool::ChainApi; +use sc_transaction_pool_api::TransactionPool; +use sp_api::ProvideRuntimeApi; +use sp_blockchain::HeaderBackend; +use sp_runtime::traits::Block as BlockT; +use starknet_core::types::{ + BlockId, BroadcastedTransaction, DeclareTransactionTrace, DeployAccountTransactionTrace, ExecuteInvocation, + FeeEstimate, InvokeTransactionTrace, RevertedInvocation, SimulatedTransaction, SimulationFlag, TransactionTrace, +}; +use starknet_ff::FieldElement; +use thiserror::Error; + +use crate::errors::StarknetRpcApiError; +use crate::Starknet; + +#[async_trait] +#[allow(unused_variables)] +impl StarknetTraceRpcApiServer for Starknet +where + A: ChainApi + 'static, + B: BlockT, + BE: Backend + 'static, + G: GenesisProvider + Send + Sync + 'static, + C: HeaderBackend + BlockBackend + StorageProvider + 'static, + C: ProvideRuntimeApi, + C::Api: StarknetRuntimeApi + ConvertTransactionRuntimeApi, + P: TransactionPool + 'static, + H: HasherT + Send + Sync + 'static, +{ + async fn simulate_transactions( + &self, + block_id: BlockId, + transactions: Vec, + simulation_flags: Vec, + ) -> RpcResult> { + let substrate_block_hash = + self.substrate_block_hash_from_starknet_block(block_id).map_err(|e| StarknetRpcApiError::BlockNotFound)?; + let chain_id = Felt252Wrapper(self.chain_id()?.0); + let best_block_hash = self.client.info().best_hash; + + let tx_type_and_tx_iterator = transactions.into_iter().map(|tx| match tx { + BroadcastedTransaction::Invoke(invoke_tx) => invoke_tx.try_into().map(|tx| (TxType::Invoke, tx)), + BroadcastedTransaction::Declare(declare_tx) => declare_tx.try_into().map(|tx| (TxType::Declare, tx)), + BroadcastedTransaction::DeployAccount(deploy_account_tx) => { + deploy_account_tx.try_into().map(|tx| (TxType::DeployAccount, tx)) + } + }); + let (tx_types, user_transactions) = + itertools::process_results(tx_type_and_tx_iterator, |iter| iter.unzip::<_, _, Vec<_>, Vec<_>>()).map_err( + |e| { + error!("Failed to convert BroadcastedTransaction to UserTransaction: {e}"); + StarknetRpcApiError::InternalServerError + }, + )?; + + let simulation_flags = SimulationFlags::from(simulation_flags); + + let res = self + .client + .runtime_api() + .simulate_transactions(substrate_block_hash, user_transactions, simulation_flags) + .map_err(|e| { + error!("Request parameters error: {e}"); + StarknetRpcApiError::InternalServerError + })? + .map_err(|e| { + error!("Failed to call function: {:#?}", e); + StarknetRpcApiError::ContractError + })?; + + let storage_override = self.overrides.for_block_hash(self.client.as_ref(), substrate_block_hash); + let simulated_transactions = + tx_execution_infos_to_simulated_transactions(&**storage_override, substrate_block_hash, tx_types, res) + .map_err(|e| match e { + ConvertCallInfoToExecuteInvocationError::TransactionExecutionFailed => { + StarknetRpcApiError::ContractError + } + ConvertCallInfoToExecuteInvocationError::GetFunctionInvocation(_) => { + StarknetRpcApiError::InternalServerError + } + })?; + + Ok(simulated_transactions) + } +} + +#[derive(Error, Debug)] +pub enum ConvertCallInfoToExecuteInvocationError { + #[error("One of the simulated transaction failed")] + TransactionExecutionFailed, + #[error(transparent)] + GetFunctionInvocation(#[from] TryFuntionInvocationFromCallInfoError), +} + +fn collect_call_info_ordered_messages(call_info: &CallInfo) -> Vec { + call_info + .execution + .l2_to_l1_messages + .iter() + .enumerate() + .map(|(index, message)| starknet_core::types::OrderedMessage { + order: index as u64, + payload: message.message.payload.0.iter().map(|x| Felt252Wrapper::from(*x).into()).collect(), + to_address: FieldElement::from_byte_slice_be(message.message.to_address.0.to_fixed_bytes().as_slice()) + .unwrap(), + from_address: Felt252Wrapper::from(call_info.call.storage_address.0.0).into(), + }) + .collect() +} + +fn blockifier_to_starknet_rs_ordered_events( + ordered_events: &[blockifier::execution::entry_point::OrderedEvent], +) -> Vec { + ordered_events + .iter() + .map(|event| starknet_core::types::OrderedEvent { + order: event.order as u64, // Convert usize to u64 + keys: event.event.keys.iter().map(|key| FieldElement::from_byte_slice_be(key.0.bytes()).unwrap()).collect(), + data: event + .event + .data + .0 + .iter() + .map(|data_item| FieldElement::from_byte_slice_be(data_item.bytes()).unwrap()) + .collect(), + }) + .collect() +} + +#[derive(Error, Debug)] +pub enum TryFuntionInvocationFromCallInfoError { + #[error(transparent)] + TransactionExecution(#[from] TransactionExecutionError), + #[error("No contract found at the Call contract_address")] + ContractNotFound, +} + +fn try_get_funtion_invocation_from_call_info( + storage_override: &dyn StorageOverride, + substrate_block_hash: B::Hash, + call_info: &CallInfo, +) -> Result { + let messages = collect_call_info_ordered_messages(call_info); + let events = blockifier_to_starknet_rs_ordered_events(&call_info.execution.events); + + let inner_calls = call_info + .inner_calls + .iter() + .map(|call| try_get_funtion_invocation_from_call_info(storage_override, substrate_block_hash, call)) + .collect::>()?; + + call_info.get_sorted_l2_to_l1_payloads_length()?; + + let entry_point_type = match call_info.call.entry_point_type { + starknet_api::deprecated_contract_class::EntryPointType::Constructor => { + starknet_core::types::EntryPointType::Constructor + } + starknet_api::deprecated_contract_class::EntryPointType::External => { + starknet_core::types::EntryPointType::External + } + starknet_api::deprecated_contract_class::EntryPointType::L1Handler => { + starknet_core::types::EntryPointType::L1Handler + } + }; + + let call_type = match call_info.call.call_type { + blockifier::execution::entry_point::CallType::Call => starknet_core::types::CallType::Call, + blockifier::execution::entry_point::CallType::Delegate => starknet_core::types::CallType::Delegate, + }; + + // Blockifier call info does not give use the class_hash "if it can be deducted from the storage + // address". We have to do this decution ourselves here + let class_hash = if let Some(class_hash) = call_info.call.class_hash { + Felt252Wrapper::from(class_hash.0).into() + } else { + let class_hash = storage_override + .contract_class_hash_by_address(substrate_block_hash, call_info.call.storage_address) + .ok_or_else(|| TryFuntionInvocationFromCallInfoError::ContractNotFound)?; + + FieldElement::from_byte_slice_be(class_hash.0.bytes()).unwrap() + }; + + Ok(starknet_core::types::FunctionInvocation { + contract_address: Felt252Wrapper::from(call_info.call.storage_address.0.0).into(), + entry_point_selector: Felt252Wrapper::from(call_info.call.entry_point_selector.0).into(), + calldata: call_info.call.calldata.0.iter().map(|x| Felt252Wrapper::from(*x).into()).collect(), + caller_address: Felt252Wrapper::from(call_info.call.caller_address.0.0).into(), + class_hash, + entry_point_type, + call_type, + result: call_info.execution.retdata.0.iter().map(|x| Felt252Wrapper::from(*x).into()).collect(), + calls: inner_calls, + events, + messages, + }) +} + +fn tx_execution_infos_to_simulated_transactions( + storage_override: &dyn StorageOverride, + substrate_block_hash: B::Hash, + tx_types: Vec, + transaction_execution_results: Vec< + Result, + >, +) -> Result, ConvertCallInfoToExecuteInvocationError> { + let mut results = vec![]; + for (tx_type, res) in tx_types.iter().zip(transaction_execution_results.iter()) { + match res { + Ok(tx_exec_info) => { + // If simulated with `SimulationFlag::SkipValidate` this will be `None` + // therefore we cannot unwrap it + let validate_invocation = tx_exec_info + .validate_call_info + .as_ref() + .map(|call_info| { + try_get_funtion_invocation_from_call_info(storage_override, substrate_block_hash, call_info) + }) + .transpose()?; + // If simulated with `SimulationFlag::SkipFeeCharge` this will be `None` + // therefore we cannot unwrap it + let fee_transfer_invocation = tx_exec_info + .fee_transfer_call_info + .as_ref() + .map(|call_info| { + try_get_funtion_invocation_from_call_info(storage_override, substrate_block_hash, call_info) + }) + .transpose()?; + + let transaction_trace = match tx_type { + TxType::Invoke => TransactionTrace::Invoke(InvokeTransactionTrace { + validate_invocation, + execute_invocation: if let Some(e) = &tx_exec_info.revert_error { + ExecuteInvocation::Reverted(RevertedInvocation { revert_reason: e.clone() }) + } else { + ExecuteInvocation::Success(try_get_funtion_invocation_from_call_info( + storage_override, + substrate_block_hash, + // Safe to unwrap because is only `None` for `Declare` txs + tx_exec_info.execute_call_info.as_ref().unwrap(), + )?) + }, + fee_transfer_invocation, + // TODO(#1291): Compute state diff correctly + state_diff: None, + }), + TxType::Declare => TransactionTrace::Declare(DeclareTransactionTrace { + validate_invocation, + fee_transfer_invocation, + // TODO(#1291): Compute state diff correctly + state_diff: None, + }), + TxType::DeployAccount => { + TransactionTrace::DeployAccount(DeployAccountTransactionTrace { + validate_invocation, + constructor_invocation: try_get_funtion_invocation_from_call_info( + storage_override, + substrate_block_hash, + // Safe to unwrap because is only `None` for `Declare` txs + tx_exec_info.execute_call_info.as_ref().unwrap(), + )?, + fee_transfer_invocation, + // TODO(#1291): Compute state diff correctly + state_diff: None, + }) + } + TxType::L1Handler => unreachable!("L1Handler transactions cannot be simulated"), + }; + + let gas_consumed = + tx_exec_info.execute_call_info.as_ref().map(|x| x.execution.gas_consumed).unwrap_or_default(); + let overall_fee = tx_exec_info.actual_fee.0 as u64; + // TODO: Shouldn't the gas price be taken from the block header instead? + let gas_price = if gas_consumed > 0 { overall_fee / gas_consumed } else { 0 }; + + results.push(SimulatedTransaction { + transaction_trace, + fee_estimation: FeeEstimate { gas_consumed, gas_price, overall_fee }, + }); + } + Err(_) => { + return Err(ConvertCallInfoToExecuteInvocationError::TransactionExecutionFailed); + } + } + } + + Ok(results) +} diff --git a/crates/client/settlement/Cargo.toml b/crates/client/settlement/Cargo.toml index 47e557bd1d..9f0196858f 100644 --- a/crates/client/settlement/Cargo.toml +++ b/crates/client/settlement/Cargo.toml @@ -31,6 +31,7 @@ sp-io = { workspace = true, default-features = true } sp-runtime = { workspace = true, default-features = true } # Starknet +mc-db = { workspace = true, default-features = true } mp-block = { workspace = true, default-features = true } mp-digest-log = { workspace = true, features = ["std"] } mp-felt = { workspace = true, default-features = true } diff --git a/crates/client/settlement/src/sync_state.rs b/crates/client/settlement/src/sync_state.rs index 918ec688e3..316bd7d437 100644 --- a/crates/client/settlement/src/sync_state.rs +++ b/crates/client/settlement/src/sync_state.rs @@ -3,7 +3,6 @@ use std::sync::Arc; use futures::StreamExt; use futures_timer::Delay; use mp_block::Block as StarknetBlock; -use mp_felt::Felt252Wrapper; use mp_hashers::HasherT; use mp_messages::{MessageL1ToL2, MessageL2ToL1}; use mp_snos_output::StarknetOsOutput; @@ -15,15 +14,12 @@ use sp_api::{HeaderT, ProvideRuntimeApi}; use sp_arithmetic::traits::UniqueSaturatedInto; use sp_blockchain::HeaderBackend; use sp_runtime::traits::Block as BlockT; -use starknet_api::hash::{pedersen_hash_array, StarkFelt, StarkHash}; +use starknet_api::hash::StarkHash; use starknet_api::transaction::TransactionHash; -use starknet_crypto::FieldElement; use crate::errors::Error; use crate::{Result, RetryStrategy, SettlementProvider, SettlementWorker, StarknetSpec, StarknetState}; -pub const SN_OS_CONFIG_HASH_VERSION: &str = "StarknetOsConfig1"; - impl SettlementWorker where B: BlockT, @@ -40,10 +36,11 @@ where pub async fn sync_state( substrate_client: Arc, settlement_provider: Box>, + madara_backend: Arc>, retry_strategy: Box>, ) { loop { - match Self::sync_state_loop(&substrate_client, settlement_provider.as_ref()).await { + match Self::sync_state_loop(&substrate_client, settlement_provider.as_ref(), &madara_backend).await { Ok(()) => { return; } @@ -80,7 +77,11 @@ where /// In case chain is stuck it won't update the state, even if there are pending blocks. /// It is ok, since it's not a normal condition, and generally we expect that the chain will /// advance indefinitely. - async fn sync_state_loop(substrate_client: &SC, settlement_provider: &SP) -> Result<(), B> + async fn sync_state_loop( + substrate_client: &SC, + settlement_provider: &SP, + madara_backend: &mc_db::Backend, + ) -> Result<(), B> where SP: ?Sized + SettlementProvider, { @@ -99,7 +100,7 @@ where // If we haven't reached the settled level yet (e.g. syncing from scratch) this check will pass. // But we need to run it again once we are up to speed. - Self::verify_starknet_state(substrate_client, &last_settled_state)?; + Self::verify_starknet_state(substrate_client, &last_settled_state, madara_backend)?; let mut finality_notifications = substrate_client.finality_notification_stream(); let mut sync_from: u64 = last_settled_state.block_number.try_into()?; @@ -115,7 +116,7 @@ where if sync_from == sync_to { log::info!("[settlement] Verifying state root for block {}", sync_to); - Self::verify_starknet_state(substrate_client, &last_settled_state)?; + Self::verify_starknet_state(substrate_client, &last_settled_state, madara_backend)?; continue; } @@ -135,6 +136,7 @@ where &next_block, substrate_block_hash, starknet_spec.config_hash, + madara_backend, ) .await?; @@ -181,16 +183,7 @@ where return Err(Error::ProgramHashMismatch { expected: program_hash, actual: starknet_spec.program_hash }); } - let chain_id = substrate_client.runtime_api().chain_id(substrate_hash)?; - let fee_token_address = substrate_client.runtime_api().fee_token_address(substrate_hash)?; - - let config_hash = pedersen_hash_array(&[ - StarkFelt::from(Felt252Wrapper::from( - FieldElement::from_byte_slice_be(SN_OS_CONFIG_HASH_VERSION.as_bytes()).unwrap(), - )), - chain_id.into(), - fee_token_address.0.0, - ]); + let config_hash = substrate_client.runtime_api().config_hash(substrate_hash)?; if starknet_spec.config_hash != config_hash { return Err(Error::ConfigHashMismatch { expected: config_hash, actual: starknet_spec.config_hash }); @@ -204,12 +197,16 @@ where /// /// If Madara chain haven't reached the given block level yet, it returns OK, assuming that as /// soon as it catches up - this check will be done again. - fn verify_starknet_state(substrate_client: &SC, state: &StarknetState) -> Result<(), B> { + fn verify_starknet_state( + substrate_client: &SC, + state: &StarknetState, + madara_backend: &mc_db::Backend, + ) -> Result<(), B> { let height: u64 = state.block_number.try_into()?; match Self::get_starknet_block(substrate_client, height) { - Ok((block, _)) => { - let state_root = block.header().global_state_root; + Ok((_block, _)) => { + let state_root = madara_backend.temporary_global_state_root_getter(); // Verify that current onchain state is consistent with corresponding Madara block if state.state_root != state_root { return Err(Error::StateRootMismatch { height, expected: state_root, actual: state.state_root }); @@ -241,13 +238,14 @@ where next_block: &StarknetBlock, substrate_block_hash: B::Hash, config_hash: StarkHash, + madara_backend: &mc_db::Backend, ) -> Result where SP: ?Sized + SettlementProvider, { let next_state = StarknetState { block_number: next_block.header().block_number.into(), - state_root: next_block.header().global_state_root, + state_root: madara_backend.temporary_global_state_root_getter(), }; let mut messages_to_l1: Vec = Vec::new(); diff --git a/crates/client/storage/src/overrides/schema_v1_override.rs b/crates/client/storage/src/overrides/schema_v1_override.rs index fd101831c9..3205213b45 100644 --- a/crates/client/storage/src/overrides/schema_v1_override.rs +++ b/crates/client/storage/src/overrides/schema_v1_override.rs @@ -117,6 +117,8 @@ where } fn nonce(&self, block_hash: ::Hash, address: ContractAddress) -> Option { + self.contract_class_hash_by_address(block_hash, address)?; + let storage_nonce_prefix = storage_prefix_build(PALLET_STARKNET, STARKNET_NONCE); let nonce = self.query_storage::( block_hash, diff --git a/crates/node/Cargo.toml b/crates/node/Cargo.toml index 6f138792ee..6150236638 100644 --- a/crates/node/Cargo.toml +++ b/crates/node/Cargo.toml @@ -29,8 +29,8 @@ clap = { workspace = true, features = ["derive"] } futures = { workspace = true, features = ["thread-pool"] } lazy_static = { workspace = true } log = { workspace = true } -md5 = { workspace = true } serde = { workspace = true } +sha3 = { workspace = true } tokio = { workspace = true } frame-system = { workspace = true } diff --git a/crates/node/src/commands/setup.rs b/crates/node/src/commands/setup.rs index 479b1a8bb2..cd2d5c1e62 100644 --- a/crates/node/src/commands/setup.rs +++ b/crates/node/src/commands/setup.rs @@ -2,6 +2,7 @@ use std::path::{Path, PathBuf}; use sc_cli::{Error, Result, SubstrateCli}; use sc_service::BasePath; +use sha3::{Digest, Sha3_256}; use url::Url; use crate::chain_spec::GENESIS_ASSETS_DIR; @@ -13,7 +14,7 @@ use crate::{configs, constants}; /// The index.json must follow the format of the official index.json /// (https://github.com/keep-starknet-strange/madara/blob/main/configs/index.json) -/// Where the `md5` and `url` fields are optional +/// Where the `sha3_256` and `url` fields are optional #[derive(Debug, clap::Args)] #[group(required = true, multiple = false)] pub struct SetupSource { @@ -173,9 +174,11 @@ impl SetupCmd { for asset in &configs.genesis_assets { let asset_file_content = config_source.load_asset(asset)?; - // Verify it's md5 - if let Some(file_hash) = &asset.md5 { - let digest = md5::compute(&asset_file_content); + // Verify it's sha3_256 + if let Some(file_hash) = &asset.sha3_256 { + let mut hasher = Sha3_256::new(); + hasher.update(&asset_file_content); + let digest = hasher.finalize(); let hash = format!("{:x}", digest); if hash != *file_hash { return Err(Error::Input(format!( diff --git a/crates/node/src/configs.rs b/crates/node/src/configs.rs index f228d65f8a..32d911641b 100644 --- a/crates/node/src/configs.rs +++ b/crates/node/src/configs.rs @@ -9,6 +9,6 @@ pub struct Configs { #[derive(Deserialize)] pub struct FileInfos { pub name: String, - pub md5: Option, + pub sha3_256: Option, pub url: Option, } diff --git a/crates/node/src/service.rs b/crates/node/src/service.rs index 88fe5a61e0..1e6ec93d61 100644 --- a/crates/node/src/service.rs +++ b/crates/node/src/service.rs @@ -424,8 +424,12 @@ pub fn new_full( task_manager.spawn_essential_handle().spawn( "commitment-state-diff", Some("madara"), - CommitmentStateDiffWorker::<_, _, StarknetHasher>::new(client.clone(), commitment_state_diff_tx) - .for_each(|()| future::ready(())), + CommitmentStateDiffWorker::<_, _, StarknetHasher>::new( + client.clone(), + madara_backend.clone(), + commitment_state_diff_tx, + ) + .for_each(|()| future::ready(())), ); task_manager.spawn_essential_handle().spawn( diff --git a/crates/pallets/starknet/Cargo.toml b/crates/pallets/starknet/Cargo.toml index 5efa5e734e..304c9b3c86 100644 --- a/crates/pallets/starknet/Cargo.toml +++ b/crates/pallets/starknet/Cargo.toml @@ -27,7 +27,7 @@ mp-program-hash = { workspace = true } mp-sequencer-address = { workspace = true, features = ["parity-scale-codec"] } mp-simulations = { workspace = true, features = [ "parity-scale-codec", - "serde", + "scale-info", ] } mp-snos-output = { workspace = true, features = [ "parity-scale-codec", diff --git a/crates/pallets/starknet/runtime_api/src/lib.rs b/crates/pallets/starknet/runtime_api/src/lib.rs index 73a39fab1d..42fead4730 100644 --- a/crates/pallets/starknet/runtime_api/src/lib.rs +++ b/crates/pallets/starknet/runtime_api/src/lib.rs @@ -9,6 +9,7 @@ use alloc::sync::Arc; use blockifier::execution::contract_class::ContractClass; +use blockifier::transaction::objects::TransactionExecutionInfo; use mp_felt::Felt252Wrapper; use mp_transactions::{HandleL1MessageTransaction, Transaction, UserTransaction}; use sp_api::BlockT; @@ -16,11 +17,11 @@ pub extern crate alloc; use alloc::string::String; use alloc::vec::Vec; -use mp_simulations::{SimulatedTransaction, SimulationFlags}; +use mp_simulations::{PlaceHolderErrorTypeForFailedStarknetExecution, SimulationFlags}; use sp_runtime::DispatchError; use starknet_api::api_core::{ChainId, ClassHash, ContractAddress, EntryPointSelector, Nonce}; use starknet_api::block::{BlockNumber, BlockTimestamp}; -use starknet_api::hash::StarkFelt; +use starknet_api::hash::{StarkFelt, StarkHash}; use starknet_api::state::StorageKey; use starknet_api::transaction::{Calldata, Event as StarknetEvent, Fee, MessageToL1, TransactionHash}; @@ -49,12 +50,14 @@ sp_api::decl_runtime_apis! { fn chain_id() -> Felt252Wrapper; /// Returns the Starknet OS Cairo program hash. fn program_hash() -> Felt252Wrapper; + /// Returns the Starknet config hash. + fn config_hash() -> StarkHash; /// Returns the fee token address. fn fee_token_address() -> ContractAddress; /// Returns fee estimate fn estimate_fee(transactions: Vec) -> Result, DispatchError>; /// Simulates transactions and returns their trace - fn simulate_transactions(transactions: Vec, simulation_flags: SimulationFlags) -> Result, DispatchError>; + fn simulate_transactions(transactions: Vec, simulation_flags: SimulationFlags) -> Result>, DispatchError>; /// Filters extrinsic transactions to return only Starknet transactions /// /// To support runtime upgrades, the client must be unaware of the specific extrinsic diff --git a/crates/pallets/starknet/src/lib.rs b/crates/pallets/starknet/src/lib.rs index e19031218a..ed2bfa796f 100644 --- a/crates/pallets/starknet/src/lib.rs +++ b/crates/pallets/starknet/src/lib.rs @@ -33,7 +33,6 @@ #![cfg_attr(not(feature = "std"), no_std)] #![allow(clippy::large_enum_variant)] -use blockifier::transaction::objects::TransactionExecutionResult; /// Starknet pallet. /// Definition of the pallet's runtime storage items, events, errors, and dispatchable /// functions. @@ -51,11 +50,6 @@ pub mod transaction_validation; /// The Starknet pallet's runtime custom types. pub mod types; -use blockifier::execution::entry_point::{CallEntryPoint, CallType, EntryPointExecutionContext}; -use blockifier::state::cached_state::ContractStorageKey; -use starknet_api::state::StorageKey; -use starknet_api::transaction::{Calldata, Event as StarknetEvent, Fee}; - #[cfg(test)] mod tests; mod utils; @@ -71,8 +65,12 @@ use alloc::vec::Vec; use blockifier::block_context::BlockContext; use blockifier::execution::contract_class::ContractClass; -use blockifier::execution::entry_point::{CallInfo, ExecutionResources}; +use blockifier::execution::entry_point::{ + CallEntryPoint, CallInfo, CallType, EntryPointExecutionContext, ExecutionResources, +}; use blockifier::execution::errors::{EntryPointExecutionError, PreExecutionError}; +use blockifier::state::cached_state::ContractStorageKey; +use blockifier::transaction::objects::TransactionExecutionInfo; use blockifier_state_adapter::BlockifierStateAdapter; use frame_support::pallet_prelude::*; use frame_support::traits::Time; @@ -84,11 +82,7 @@ use mp_fee::{ResourcePrice, INITIAL_GAS}; use mp_felt::Felt252Wrapper; use mp_hashers::HasherT; use mp_sequencer_address::{InherentError, InherentType, DEFAULT_SEQUENCER_ADDRESS, INHERENT_IDENTIFIER}; -use mp_simulations::{ - DeclareTransactionTrace, DeployAccountTransactionTrace, FeeEstimate, FunctionInvocation, InvokeTransactionTrace, - SimulatedTransaction, SimulationFlags, TransactionTrace, -}; -use mp_state::rpc::StateDiff; +use mp_simulations::{PlaceHolderErrorTypeForFailedStarknetExecution, SimulationFlags}; use mp_storage::{StarknetStorageSchemaVersion, PALLET_STARKNET_SCHEMA}; use mp_transactions::execution::Execute; use mp_transactions::{ @@ -100,21 +94,24 @@ use sp_runtime::DigestItem; use starknet_api::api_core::{ChainId, ClassHash, CompiledClassHash, ContractAddress, EntryPointSelector, Nonce}; use starknet_api::block::{BlockNumber, BlockTimestamp}; use starknet_api::deprecated_contract_class::EntryPointType; -use starknet_api::hash::StarkFelt; -use starknet_api::transaction::{MessageToL1, TransactionHash}; +use starknet_api::hash::{StarkFelt, StarkHash}; +use starknet_api::state::StorageKey; +use starknet_api::transaction::{Calldata, Event as StarknetEvent, Fee, MessageToL1, TransactionHash}; use starknet_crypto::FieldElement; use transaction_validation::TxPriorityInfo; use crate::alloc::string::ToString; use crate::execution_config::RuntimeExecutionConfigBuilder; use crate::types::{CasmClassHash, SierraClassHash, StorageSlot}; -use crate::utils::{convert_call_info_to_execute_invocation, execute_txs_and_rollback}; +use crate::utils::execute_txs_and_rollback; pub(crate) const LOG_TARGET: &str = "runtime::starknet"; pub const ETHEREUM_EXECUTION_RPC: &[u8] = b"starknet::ETHEREUM_EXECUTION_RPC"; pub const ETHEREUM_CONSENSUS_RPC: &[u8] = b"starknet::ETHEREUM_CONSENSUS_RPC"; +pub const SN_OS_CONFIG_HASH_VERSION: &str = "StarknetOsConfig1"; + // syntactic sugar for logging. #[macro_export] macro_rules! log { @@ -142,8 +139,11 @@ pub mod pallet { type RuntimeEvent: From> + IsType<::RuntimeEvent>; /// The hashing function to use. type SystemHash: HasherT; - /// The time idk what. + /// The block time type TimestampProvider: Time; + /// The gas price + #[pallet::constant] + type L1GasPrice: Get; /// A configuration for base priority of unsigned transactions. /// /// This is exposed so that it can be tuned for particular runtime, when @@ -391,14 +391,14 @@ pub mod pallet { /// second element is the contract class hash. /// This can be used to start the chain with a set of pre-deployed contracts, for example in /// a test environment or in the case of a migration of an existing chain state. - pub contracts: Vec<(ContractAddress, CasmClassHash)>, + pub contracts: Vec<(ContractAddress, SierraClassHash)>, pub sierra_to_casm_class_hash: Vec<(SierraClassHash, CasmClassHash)>, /// The contract classes to be deployed at genesis. /// This is a vector of tuples, where the first element is the contract class hash and the /// second element is the contract class definition. /// Same as `contracts`, this can be used to start the chain with a set of pre-deployed /// contracts classes. - pub contract_classes: Vec<(CasmClassHash, ContractClass)>, + pub contract_classes: Vec<(SierraClassHash, ContractClass)>, pub storage: Vec<(ContractStorageKey, StarkFelt)>, /// The address of the fee token. /// Must be set to the address of the fee token ERC20 contract. @@ -493,7 +493,7 @@ pub mod pallet { Unimplemented, MissingRevertReason, MissingCallInfo, - TransactionalExecutionFailed, + FailedToCreateATransactionalStorageExecution, L1MessageAlreadyExecuted, } @@ -872,8 +872,6 @@ impl Pallet { let chain_id = Self::chain_id_str(); let vm_resource_fee_cost = Default::default(); - // FIXME: https://github.com/keep-starknet-strange/madara/issues/329 - let gas_price = 10; BlockContext { block_number: BlockNumber(block_number), block_timestamp: BlockTimestamp(block_timestamp), @@ -883,7 +881,7 @@ impl Pallet { vm_resource_fee_cost, invoke_tx_max_n_steps: T::InvokeTxMaxNSteps::get(), validate_max_n_steps: T::ValidateMaxNSteps::get(), - gas_price, + gas_price: T::L1GasPrice::get().price_in_wei, max_recursion_depth: T::MaxRecursionDepth::get(), } } @@ -1019,24 +1017,18 @@ impl Pallet { transaction_hashes.len(), "transactions and transaction hashes should be the same length" ); + let global_state_root = Felt252Wrapper::default(); let transaction_count = transactions.len(); - let parent_block_hash = Self::parent_block_hash(&block_number); let events: Vec = transaction_hashes.iter().flat_map(TxEvents::::take).collect(); - - let global_state_root = Felt252Wrapper::default(); - let sequencer_address = Self::sequencer_address(); let block_timestamp = Self::block_timestamp(); - let chain_id = Self::chain_id(); let (transaction_commitment, event_commitment) = mp_commitments::calculate_commitments::(&transactions, &events, chain_id, block_number); let protocol_version = T::ProtocolVersion::get(); let extra_data = None; - - // TODO: Compute l1_gas_price correctly - let l1_gas_price = ResourcePrice::default(); + let l1_gas_price = T::L1GasPrice::get(); let block = StarknetBlock::new( StarknetHeader::new( @@ -1182,7 +1174,7 @@ impl Pallet { Ok(tx_exec_info) => { log!(info, "Successfully estimated fee: {:?}", tx_exec_info); if let Some(l1_gas_usage) = tx_exec_info.actual_resources.0.get("l1_gas_usage") { - results.push((tx_exec_info.actual_fee.0 as u64, *l1_gas_usage as u64)); + results.push((tx_exec_info.actual_fee.0 as u64, *l1_gas_usage)); } else { return Err(Error::::TransactionExecutionFailed.into()); } @@ -1199,92 +1191,18 @@ impl Pallet { pub fn simulate_transactions( transactions: Vec, simulation_flags: SimulationFlags, - ) -> Result, DispatchError> { + ) -> Result>, DispatchError> + { let chain_id = Self::chain_id(); - let execution_results = execute_txs_and_rollback::( + let tx_execution_results = execute_txs_and_rollback::( &transactions, &Self::get_block_context(), chain_id, &mut RuntimeExecutionConfigBuilder::new::().with_simulation_mode(&simulation_flags).build(), )?; - fn get_function_invocation( - call_info: Option<&CallInfo>, - ) -> TransactionExecutionResult> { - call_info.map(FunctionInvocation::try_from).transpose() - } - - let mut results = vec![]; - for (tx, res) in transactions.iter().zip(execution_results.iter()) { - match res { - Ok(tx_exec_info) => { - let validate_invocation = get_function_invocation(tx_exec_info.validate_call_info.as_ref()) - .map_err(|err| { - log::error!("Failed to convert validate call info to function invocation: {}", err); - Error::::TransactionExecutionFailed - })?; - let fee_transfer_invocation = get_function_invocation(tx_exec_info.fee_transfer_call_info.as_ref()) - .map_err(|err| { - log::error!("Failed to convert fee transfer call info to function invocation: {}", err); - Error::::TransactionExecutionFailed - })?; - - let transaction_trace = match tx { - UserTransaction::Invoke(_) => TransactionTrace::Invoke(InvokeTransactionTrace { - validate_invocation, - execute_invocation: convert_call_info_to_execute_invocation::( - tx_exec_info - .execute_call_info - .as_ref() - .ok_or(Error::::TransactionExecutionFailed)?, - tx_exec_info.revert_error.as_ref(), - )?, - fee_transfer_invocation, - // TODO(#1291): Compute state diff correctly - state_diff: Some(StateDiff::default()), - }), - UserTransaction::Declare(_, _) => TransactionTrace::Declare(DeclareTransactionTrace { - validate_invocation, - fee_transfer_invocation, - // TODO(#1291): Compute state diff correctly - state_diff: Some(StateDiff::default()), - }), - UserTransaction::DeployAccount(_) => { - TransactionTrace::DeployAccount(DeployAccountTransactionTrace { - validate_invocation, - constructor_invocation: tx_exec_info - .execute_call_info - .as_ref() - .ok_or(Error::::TransactionExecutionFailed)? - .try_into() - .map_err(|_| Error::::TransactionExecutionFailed)?, - - fee_transfer_invocation, - // TODO(#1291): Compute state diff correctly - state_diff: Some(StateDiff::default()), - }) - } - }; - let gas_consumed = tx_exec_info - .execute_call_info - .as_ref() - .map(|x| x.execution.gas_consumed) - .ok_or(Error::::TransactionExecutionFailed)?; - let overall_fee = tx_exec_info.actual_fee.0 as u64; - let gas_price = if gas_consumed > 0 { overall_fee / gas_consumed } else { 0 }; - results.push(SimulatedTransaction { - transaction_trace, - fee_estimation: FeeEstimate { gas_consumed, gas_price, overall_fee }, - }); - } - Err(_e) => { - return Err(Error::::TransactionExecutionFailed.into()); - } - } - } - - Ok(results) + Ok(tx_execution_results) } pub fn emit_and_store_tx_and_fees_events( @@ -1316,6 +1234,15 @@ impl Pallet { T::ProgramHash::get() } + pub fn config_hash() -> StarkHash { + Felt252Wrapper::from(T::SystemHash::compute_hash_on_elements(&[ + FieldElement::from_byte_slice_be(SN_OS_CONFIG_HASH_VERSION.as_bytes()).unwrap(), + T::ChainId::get().into(), + Felt252Wrapper::from(Self::fee_token_address().0.0).into(), + ])) + .into() + } + pub fn is_transaction_fee_disabled() -> bool { T::DisableTransactionFee::get() } diff --git a/crates/pallets/starknet/src/tests/mock/setup_mock.rs b/crates/pallets/starknet/src/tests/mock/setup_mock.rs index fb64c7ac92..3113361b19 100644 --- a/crates/pallets/starknet/src/tests/mock/setup_mock.rs +++ b/crates/pallets/starknet/src/tests/mock/setup_mock.rs @@ -18,6 +18,7 @@ macro_rules! mock_runtime { use mp_felt::Felt252Wrapper; use starknet_api::api_core::{PatriciaKey, ContractAddress}; use starknet_api::hash::StarkFelt; + use mp_fee::ResourcePrice; type Block = frame_system::mocking::MockBlock; @@ -74,6 +75,7 @@ macro_rules! mock_runtime { pub const ChainId: Felt252Wrapper = mp_chain_id::SN_GOERLI_CHAIN_ID; pub const MaxRecursionDepth: u32 = 50; pub const ProgramHash: Felt252Wrapper = mp_program_hash::SN_OS_PROGRAM_HASH; + pub const L1GasPrice: ResourcePrice = ResourcePrice { price_in_strk: None, price_in_wei: 10 }; } impl pallet_starknet::Config for MockRuntime { @@ -90,6 +92,7 @@ macro_rules! mock_runtime { type ChainId = ChainId; type MaxRecursionDepth = MaxRecursionDepth; type ProgramHash = ProgramHash; + type L1GasPrice = L1GasPrice; } /// Run to block n. diff --git a/crates/pallets/starknet/src/utils.rs b/crates/pallets/starknet/src/utils.rs index a7607cb9d9..00b7173fd3 100644 --- a/crates/pallets/starknet/src/utils.rs +++ b/crates/pallets/starknet/src/utils.rs @@ -1,12 +1,10 @@ -use alloc::string::String; use alloc::vec::Vec; use blockifier::block_context::BlockContext; -use blockifier::execution::entry_point::CallInfo; -use blockifier::transaction::objects::{TransactionExecutionInfo, TransactionExecutionResult}; +use blockifier::transaction::objects::TransactionExecutionInfo; use frame_support::storage; use mp_felt::Felt252Wrapper; -use mp_simulations::{ExecuteInvocation, RevertedInvocation}; +use mp_simulations::PlaceHolderErrorTypeForFailedStarknetExecution; use mp_transactions::execution::{Execute, ExecutionConfig}; use mp_transactions::UserTransaction; use sp_runtime::DispatchError; @@ -19,8 +17,9 @@ pub fn execute_txs_and_rollback( block_context: &BlockContext, chain_id: Felt252Wrapper, execution_config: &mut ExecutionConfig, -) -> Result>, Error> { +) -> Result>, Error> { let mut execution_results = vec![]; + storage::transactional::with_transaction(|| { for tx in txs { execution_config.set_offset_version(tx.offset_version()); @@ -38,23 +37,17 @@ pub fn execute_txs_and_rollback( let executable = tx.into_executable::(chain_id, tx.offset_version()); executable.execute(&mut BlockifierStateAdapter::::default(), block_context, execution_config) } - }; + } + .map_err(|e| { + log::info!("Failed to execute transaction: {:?}", e); + PlaceHolderErrorTypeForFailedStarknetExecution + }); + execution_results.push(result); } storage::TransactionOutcome::Rollback(Result::<_, DispatchError>::Ok(())) }) - .map_err(|_| Error::::TransactionalExecutionFailed)?; - Ok(execution_results) -} + .map_err(|_| Error::::FailedToCreateATransactionalStorageExecution)?; -pub fn convert_call_info_to_execute_invocation( - call_info: &CallInfo, - revert_error: Option<&String>, -) -> Result> { - if call_info.execution.failed { - return Ok(ExecuteInvocation::Reverted(RevertedInvocation { - revert_reason: revert_error.ok_or(Error::MissingRevertReason)?.clone(), - })); - } - Ok(ExecuteInvocation::Success(call_info.try_into().map_err(|_| Error::TransactionExecutionFailed)?)) + Ok(execution_results) } diff --git a/crates/primitives/block/src/header.rs b/crates/primitives/block/src/header.rs index cb01a3be94..44a3170240 100644 --- a/crates/primitives/block/src/header.rs +++ b/crates/primitives/block/src/header.rs @@ -129,7 +129,6 @@ impl Header { } /// Compute the hash of the header. - #[must_use] pub fn hash(&self) -> Felt252Wrapper { if self.block_number >= 833 { // Computes the block hash for blocks generated after Cairo 0.7.0 diff --git a/crates/primitives/fee/src/lib.rs b/crates/primitives/fee/src/lib.rs index bc26401d6e..c5ea5a5bfc 100644 --- a/crates/primitives/fee/src/lib.rs +++ b/crates/primitives/fee/src/lib.rs @@ -63,12 +63,14 @@ pub struct ResourcePrice { /// The price of one unit of the given resource, denominated in fri (10^-18 strk) pub price_in_strk: Option, /// The price of one unit of the given resource, denominated in wei - pub price_in_wei: u64, + pub price_in_wei: u128, } impl From for CoreResourcePrice { fn from(item: ResourcePrice) -> Self { - CoreResourcePrice { price_in_strk: item.price_in_strk, price_in_wei: item.price_in_wei } + // TODO: when we rebase starknet-rs those field type will be FieldElements + // Get rid of the type conversions + CoreResourcePrice { price_in_strk: item.price_in_strk, price_in_wei: item.price_in_wei as u64 } } } @@ -196,7 +198,7 @@ pub fn extract_l1_gas_and_vm_usage(resources: &ResourcesMapping) -> (usize, Reso let l1_gas_usage = vm_resource_usage.remove(GAS_USAGE).expect("`ResourcesMapping` does not have the key `l1_gas_usage`."); - (l1_gas_usage, ResourcesMapping(vm_resource_usage)) + (l1_gas_usage as usize, ResourcesMapping(vm_resource_usage)) } /// Calculates the L1 gas consumed when submitting the underlying Cairo program to SHARP. diff --git a/crates/primitives/genesis-config/Cargo.toml b/crates/primitives/genesis-config/Cargo.toml index 3ddff66cdb..83a76435fd 100644 --- a/crates/primitives/genesis-config/Cargo.toml +++ b/crates/primitives/genesis-config/Cargo.toml @@ -17,7 +17,7 @@ blockifier = { workspace = true, features = [ ] } # # third party -derive_more = { workspace = true } +derive_more = { workspace = true, features = ["constructor"] } hex = { workspace = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } diff --git a/crates/primitives/simulations/Cargo.toml b/crates/primitives/simulations/Cargo.toml index 684fe41502..f1fee07a9f 100644 --- a/crates/primitives/simulations/Cargo.toml +++ b/crates/primitives/simulations/Cargo.toml @@ -11,57 +11,19 @@ repository = { workspace = true } targets = ["x86_64-unknown-linux-gnu"] [dependencies] - -# Madara primitives -mp-felt = { workspace = true } -mp-messages = { workspace = true } -mp-state = { workspace = true } -mp-transactions = { workspace = true } - -# Starknet dependencies -blockifier = { workspace = true } starknet-core = { workspace = true } -starknet_api = { workspace = true } # Optional dependencies parity-scale-codec = { workspace = true, optional = true } scale-info = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"], optional = true } -serde_with = { workspace = true, optional = true } [features] default = ["std"] -parity-scale-codec = [ - "dep:parity-scale-codec", - "starknet_api/parity-scale-codec", - "mp-felt/parity-scale-codec", - "mp-messages/parity-scale-codec", - "mp-state/parity-scale-codec", - "mp-transactions/parity-scale-codec", -] -serde = [ - "dep:serde", - "dep:serde_with", - "mp-felt/serde", - "mp-messages/serde", - "mp-state/serde", - "mp-transactions/serde", -] -scale-info = [ - "dep:scale-info", - "starknet_api/scale-info", - "mp-messages/scale-info", - "mp-state/scale-info", - "mp-transactions/scale-info", -] +parity-scale-codec = ["dep:parity-scale-codec"] +scale-info = ["dep:scale-info"] std = [ - "mp-felt/std", - "starknet_api/std", - "blockifier/std", "starknet-core/std", # Optional "parity-scale-codec?/std", "scale-info?/std", - "serde?/std", - "serde_with?/std", ] diff --git a/crates/primitives/simulations/src/lib.rs b/crates/primitives/simulations/src/lib.rs index 965df4e7c8..b574cb05ef 100644 --- a/crates/primitives/simulations/src/lib.rs +++ b/crates/primitives/simulations/src/lib.rs @@ -3,22 +3,22 @@ #[doc(hidden)] pub extern crate alloc; -use alloc::string::String; use alloc::vec::Vec; -use blockifier::execution::entry_point::CallInfo; -use blockifier::transaction::errors::TransactionExecutionError; -use blockifier::transaction::objects::TransactionExecutionResult; -use mp_felt::{Felt252Wrapper, UfeHex}; -use mp_state::rpc::StateDiff; -use mp_transactions::execution::StarknetRPCExecutionResources; -use starknet_api::api_core::EthAddress; -use starknet_api::deprecated_contract_class::EntryPointType; +use starknet_core::types::SimulationFlag; + +// TODO: This is a placeholder +// https://github.com/starkware-libs/starknet-specs/blob/master/api/starknet_api_openrpc.json#L3919 +// The official rpc expect use to return the trace up to the point of failure. +// Figuring out how to get that is a problem for later +#[derive(Debug)] +#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] +#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] +pub struct PlaceHolderErrorTypeForFailedStarknetExecution; #[derive(Debug, Clone, PartialEq, Eq)] #[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] #[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] pub struct SimulationFlags { pub skip_validate: bool, pub skip_fee_charge: bool, @@ -42,318 +42,3 @@ impl From> for SimulationFlags { Self { skip_validate, skip_fee_charge } } } - -#[derive(Debug, Clone, PartialEq, Eq)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub enum SimulationFlag { - #[serde(rename = "SKIP_VALIDATE")] - SkipValidate, - #[serde(rename = "SKIP_FEE_CHARGE")] - SkipFeeCharge, -} - -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -pub struct SimulatedTransaction { - /// The transaction's trace - pub transaction_trace: TransactionTrace, - /// The transaction's resources and fee - pub fee_estimation: FeeEstimate, -} - -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -#[serde(tag = "type")] -pub enum TransactionTrace { - #[serde(rename = "INVOKE")] - Invoke(InvokeTransactionTrace), - #[serde(rename = "DEPLOY_ACCOUNT")] - DeployAccount(DeployAccountTransactionTrace), - #[serde(rename = "L1_HANDLER")] - L1Handler(L1HandlerTransactionTrace), - #[serde(rename = "DECLARE")] - Declare(DeclareTransactionTrace), -} - -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -pub struct FeeEstimate { - /// The Ethereum gas cost of the transaction (see - /// https://docs.starknet.io/docs/fees/fee-mechanism for more info) - pub gas_consumed: u64, - /// The gas price (in gwei) that was used in the cost estimation - pub gas_price: u64, - /// The estimated fee for the transaction (in gwei), product of gas_consumed and gas_price - pub overall_fee: u64, -} - -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -pub struct DeclareTransactionTrace { - #[serde(skip_serializing_if = "Option::is_none")] - pub validate_invocation: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub fee_transfer_invocation: Option, - /// The state diffs induced by the transaction - #[serde(skip_serializing_if = "Option::is_none")] - pub state_diff: Option, -} - -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -pub struct InvokeTransactionTrace { - #[serde(skip_serializing_if = "Option::is_none")] - pub validate_invocation: Option, - pub execute_invocation: ExecuteInvocation, - #[serde(skip_serializing_if = "Option::is_none")] - pub fee_transfer_invocation: Option, - /// The state diffs induced by the transaction - #[serde(skip_serializing_if = "Option::is_none")] - pub state_diff: Option, -} - -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -pub struct DeployAccountTransactionTrace { - #[serde(skip_serializing_if = "Option::is_none")] - pub validate_invocation: Option, - /// The trace of the __execute__ call or constructor call, depending on the transaction type - /// (none for declare transactions) - pub constructor_invocation: FunctionInvocation, - #[serde(skip_serializing_if = "Option::is_none")] - pub fee_transfer_invocation: Option, - /// The state diffs induced by the transaction - #[serde(skip_serializing_if = "Option::is_none")] - pub state_diff: Option, -} - -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -pub struct L1HandlerTransactionTrace { - /// The trace of the __execute__ call or constructor call, depending on the transaction type - /// (none for declare transactions) - pub function_invocation: FunctionInvocation, - /// The state diffs induced by the transaction - #[serde(skip_serializing_if = "Option::is_none")] - pub state_diff: Option, -} - -/// Orderedevent. -/// -/// An event alongside its order within the transaction. -#[serde_with::serde_as] -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -pub struct OrderedEvent { - /// The order of the event within the transaction - pub order: u64, - /// Keys - #[serde_as(as = "Vec")] - pub keys: Vec, - /// Data - #[serde_as(as = "Vec")] - pub data: Vec, -} - -#[serde_with::serde_as] -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -pub struct MessageToL1 { - /// The address of the L2 contract sending the message - #[serde_as(as = "UfeHex")] - pub from_address: Felt252Wrapper, - /// The target L1 address the message is sent to - pub to_address: EthAddress, - /// The payload of the message - #[serde_as(as = "Vec")] - pub payload: Vec, -} - -#[serde_with::serde_as] -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -pub struct OrderedMessage { - /// The order of the message within the transaction - pub order: u64, - /// The address of the L2 contract sending the message - #[serde_as(as = "UfeHex")] - pub from_address: Felt252Wrapper, - /// The target L1 address the message is sent to - pub to_address: EthAddress, - /// The payload of the message - #[serde_as(as = "Vec")] - pub payload: Vec, -} - -#[serde_with::serde_as] -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -pub struct FunctionInvocation { - /// Contract address - #[serde_as(as = "UfeHex")] - pub contract_address: Felt252Wrapper, - /// Entry point selector - #[serde_as(as = "UfeHex")] - pub entry_point_selector: Felt252Wrapper, - /// The parameters passed to the function - #[serde_as(as = "Vec")] - pub calldata: Vec, - /// The address of the invoking contract. 0 for the root invocation - #[serde_as(as = "UfeHex")] - pub caller_address: Felt252Wrapper, - /// The hash of the class being called - #[serde_as(as = "Option")] - pub class_hash: Option, - pub entry_point_type: EntryPointType, - pub call_type: CallType, - /// The value returned from the function invocation - #[serde_as(as = "Vec")] - pub result: Vec, - /// The calls made by this invocation - pub calls: Vec, - /// The events emitted in this invocation - pub events: Vec, - /// The messages sent by this invocation to L1 - pub messages: Vec, - /// Resources consumed by the internal call - pub execution_resources: StarknetRPCExecutionResources, -} - -impl TryFrom<&CallInfo> for FunctionInvocation { - type Error = TransactionExecutionError; - - fn try_from(call_info: &CallInfo) -> TransactionExecutionResult { - let messages = ordered_messages(call_info); - let events = events_to_ordered_events(&call_info.execution.events); - - let inner_calls = call_info - .inner_calls - .iter() - .map(|call| call.try_into()) - .collect::>()?; - - call_info.get_sorted_l2_to_l1_payloads_length()?; - - Ok(FunctionInvocation { - contract_address: call_info.call.storage_address.0.0.into(), - entry_point_selector: call_info.call.entry_point_selector.0.into(), - calldata: call_info.call.calldata.0.iter().map(|x| (*x).into()).collect(), - caller_address: call_info.call.caller_address.0.0.into(), - class_hash: call_info.call.class_hash.map(|x| x.0.into()), - entry_point_type: call_info.call.entry_point_type, - call_type: call_info.call.call_type.into(), - result: call_info.execution.retdata.0.iter().map(|x| (*x).into()).collect(), - calls: inner_calls, - events, - messages, - execution_resources: StarknetRPCExecutionResources::default(), - }) - } -} - -fn ordered_messages(call_info: &CallInfo) -> Vec { - let mut messages = Vec::new(); - - for (index, message) in call_info.execution.l2_to_l1_messages.iter().enumerate() { - messages.push(OrderedMessage { - order: index as u64, - payload: message.message.payload.0.iter().map(|x| (*x).into()).collect(), - to_address: message.message.to_address, - from_address: call_info.call.storage_address.0.0.into(), - }); - } - - messages -} - -fn events_to_ordered_events(ordered_events: &[blockifier::execution::entry_point::OrderedEvent]) -> Vec { - ordered_events - .iter() - .map(|event| OrderedEvent { - order: event.order as u64, // Convert usize to u64 - keys: event - .event - .keys - .iter() - .map(|key| { - Felt252Wrapper::from(key.0) // Convert StarkFelt to Felt252Wrapper - }) - .collect(), - data: event - .event - .data - .0 - .iter() - .map(|data_item| { - Felt252Wrapper::from(*data_item) // Convert StarkFelt to Felt252Wrapper - }) - .collect(), - }) - .collect() -} - -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -#[serde(untagged)] -pub enum ExecuteInvocation { - Success(FunctionInvocation), - Reverted(RevertedInvocation), -} - -#[derive(Debug, Clone)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] -pub struct RevertedInvocation { - /// The revert reason for the failed execution - pub revert_reason: String, -} - -#[derive(Clone, Debug, Eq, PartialEq)] -#[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -pub enum CallType { - #[serde(rename = "CALL")] - Call, - #[serde(rename = "LIBRARY_CALL")] - LibraryCall, - #[serde(rename = "DELEGATE")] - Delegate, -} - -impl From for CallType { - fn from(value: blockifier::execution::entry_point::CallType) -> Self { - use blockifier::execution::entry_point::CallType::*; - match value { - Call => Self::Call, - Delegate => Self::LibraryCall, - } - } -} diff --git a/crates/primitives/state/src/rpc.rs b/crates/primitives/state/src/rpc.rs index c74b1b45df..864926bd94 100644 --- a/crates/primitives/state/src/rpc.rs +++ b/crates/primitives/state/src/rpc.rs @@ -6,64 +6,61 @@ pub extern crate alloc; use alloc::vec::Vec; -use mp_felt::{Felt252Wrapper, UfeHex}; -use serde_with::serde_as; +use mp_felt::Felt252Wrapper; +#[cfg(feature = "serde")] +use mp_felt::UfeHex; /// Replaced class. /// /// The list of contracts whose class was replaced. -#[serde_with::serde_as] #[derive(Debug, Clone)] #[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] #[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] +#[cfg_attr(feature = "serde", derive(serde::Serialize), serde_with::serde_as)] pub struct ReplacedClassItem { /// The address of the contract whose class was replaced - #[serde_as(as = "UfeHex")] + #[cfg_attr(feature = "serde", serde_as(as = "UfeHex"))] pub contract_address: Felt252Wrapper, /// The new class hash - #[serde_as(as = "UfeHex")] + #[cfg_attr(feature = "serde", serde_as(as = "UfeHex"))] pub class_hash: Felt252Wrapper, } /// Deployed contract item. -#[serde_with::serde_as] #[derive(Debug, Clone)] #[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] #[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] +#[cfg_attr(feature = "serde", derive(serde::Serialize), serde_with::serde_as)] pub struct DeployedContractItem { /// The address of the contract - #[serde_as(as = "UfeHex")] + #[cfg_attr(feature = "serde", serde_as(as = "UfeHex"))] pub address: Felt252Wrapper, /// The hash of the contract code - #[serde_as(as = "UfeHex")] + #[cfg_attr(feature = "serde", serde_as(as = "UfeHex"))] pub class_hash: Felt252Wrapper, } /// New classes. /// /// The declared class hash and compiled class hash. -#[serde_with::serde_as] #[derive(Debug, Clone)] #[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] #[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] +#[cfg_attr(feature = "serde", derive(serde::Serialize), serde_with::serde_as)] pub struct DeclaredClassItem { /// The hash of the declared class - #[serde_as(as = "UfeHex")] + #[cfg_attr(feature = "serde", serde_as(as = "UfeHex"))] pub class_hash: Felt252Wrapper, /// The cairo assembly hash corresponding to the declared class - #[serde_as(as = "UfeHex")] + #[cfg_attr(feature = "serde", serde_as(as = "UfeHex"))] pub compiled_class_hash: Felt252Wrapper, } /// Contract storage diff item. -#[serde_with::serde_as] #[derive(Debug, Clone)] #[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] #[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] +#[cfg_attr(feature = "serde", derive(serde::Serialize), serde_with::serde_as)] pub struct ContractStorageDiffItem { /// The contract address for which the storage changed pub address: Felt252Wrapper, @@ -72,49 +69,46 @@ pub struct ContractStorageDiffItem { } /// Storage diff item. -#[serde_with::serde_as] #[derive(Debug, Clone)] #[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] #[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] +#[cfg_attr(feature = "serde", derive(serde::Serialize), serde_with::serde_as)] pub struct StorageEntry { /// The key of the changed value - #[serde_as(as = "UfeHex")] + #[cfg_attr(feature = "serde", serde_as(as = "UfeHex"))] pub key: Felt252Wrapper, /// The new value applied to the given address - #[serde_as(as = "UfeHex")] + #[cfg_attr(feature = "serde", serde_as(as = "UfeHex"))] pub value: Felt252Wrapper, } /// Nonce update. /// /// The updated nonce per contract address. -#[serde_with::serde_as] #[derive(Debug, Clone)] #[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] #[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] +#[cfg_attr(feature = "serde", derive(serde::Serialize), serde_with::serde_as)] pub struct NonceUpdate { /// The address of the contract - #[serde_as(as = "UfeHex")] + #[cfg_attr(feature = "serde", serde_as(as = "UfeHex"))] pub contract_address: Felt252Wrapper, /// The nonce for the given address at the end of the block - #[serde_as(as = "UfeHex")] + #[cfg_attr(feature = "serde", serde_as(as = "UfeHex"))] pub nonce: Felt252Wrapper, } /// The change in state applied in this block, given as a mapping of addresses to the new values /// and/or new contracts. -#[serde_with::serde_as] #[derive(Default, Debug, Clone)] #[cfg_attr(feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode))] #[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "serde", derive(serde::Serialize))] +#[cfg_attr(feature = "serde", derive(serde::Serialize), serde_with::serde_as)] pub struct StateDiff { /// Storage diffs pub storage_diffs: Vec, /// Deprecated declared classes - #[serde_as(as = "Vec")] + #[cfg_attr(feature = "serde", serde_as(as = "UfeHex"))] pub deprecated_declared_classes: Vec, /// Declared classes pub declared_classes: Vec, diff --git a/crates/primitives/transactions/src/execution.rs b/crates/primitives/transactions/src/execution.rs index 89e2c3e805..267a07e7d7 100644 --- a/crates/primitives/transactions/src/execution.rs +++ b/crates/primitives/transactions/src/execution.rs @@ -25,13 +25,10 @@ use blockifier::transaction::transactions::{ use mp_fee::{calculate_tx_fee, charge_fee, compute_transaction_resources}; use mp_felt::Felt252Wrapper; use mp_state::StateChanges; -use parity_scale_codec::{Decode, Encode}; -use serde::{Deserialize, Serialize}; use starknet_api::api_core::{ContractAddress, EntryPointSelector, Nonce}; use starknet_api::deprecated_contract_class::EntryPointType; use starknet_api::hash::StarkFelt; use starknet_api::transaction::{Calldata, Fee, TransactionSignature, TransactionVersion}; -use starknet_core::types::ExecutionResources as CoreExecutionResources; use super::SIMULATE_TX_VERSION_OFFSET; @@ -94,47 +91,6 @@ impl SimulateTxVersionOffset for TransactionVersion { } } -#[derive(Default, Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Encode, Decode)] -#[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] -#[cfg_attr(feature = "no_unknown_fields", serde(deny_unknown_fields))] -pub struct StarknetRPCExecutionResources { - /// The number of cairo steps used - pub steps: u64, - /// The number of unused memory cells (each cell is roughly equivalent to a step) - #[serde(skip_serializing_if = "Option::is_none")] - pub memory_holes: Option, - /// The number of range_check builtin instances - pub range_check_builtin_applications: u64, - /// The number of pedersen builtin instances - pub pedersen_builtin_applications: u64, - /// The number of poseidon builtin instances - pub poseidon_builtin_applications: u64, - /// The number of ec_op builtin instances - pub ec_op_builtin_applications: u64, - /// The number of ecdsa builtin instances - pub ecdsa_builtin_applications: u64, - /// The number of bitwise builtin instances - pub bitwise_builtin_applications: u64, - /// The number of keccak builtin instances - pub keccak_builtin_applications: u64, -} - -impl From for CoreExecutionResources { - fn from(resources: StarknetRPCExecutionResources) -> Self { - CoreExecutionResources { - steps: resources.steps, - memory_holes: resources.memory_holes, - range_check_builtin_applications: resources.range_check_builtin_applications, - pedersen_builtin_applications: resources.pedersen_builtin_applications, - poseidon_builtin_applications: resources.poseidon_builtin_applications, - ec_op_builtin_applications: resources.ec_op_builtin_applications, - ecdsa_builtin_applications: resources.ecdsa_builtin_applications, - bitwise_builtin_applications: resources.bitwise_builtin_applications, - keccak_builtin_applications: resources.keccak_builtin_applications, - } - } -} - impl GetAccountTransactionContext for DeclareTransaction { fn get_account_transaction_context(&self, offset_version: bool) -> AccountTransactionContext { let mut version = self.tx().version(); @@ -615,7 +571,6 @@ impl Execute for DeployAccountTransaction { // so that the `constructor` method can initialize the account state let execute_call_info = self.run_execute(state, resources, &mut context, remaining_gas)?; let validate_call_info = if !disable_validation { - log::info!("this is the context for validation {:?}", context); self.validate_tx_inner(state, resources, remaining_gas, &mut context, self.calldata())? } else { None diff --git a/crates/primitives/transactions/src/getters.rs b/crates/primitives/transactions/src/getters.rs index 18a91815d0..b7f9c99799 100644 --- a/crates/primitives/transactions/src/getters.rs +++ b/crates/primitives/transactions/src/getters.rs @@ -3,7 +3,10 @@ use alloc::vec::Vec; use mp_felt::Felt252Wrapper; use super::{DeclareTransaction, DeployAccountTransaction, InvokeTransaction, Transaction, UserTransaction}; -use crate::DeployTransaction; +use crate::{ + DeclareTransactionV0, DeclareTransactionV1, DeclareTransactionV2, DeployTransaction, HandleL1MessageTransaction, + InvokeTransactionV0, InvokeTransactionV1, UserAndL1HandlerTransaction, +}; impl Transaction { pub fn signature(&self) -> Vec { @@ -58,14 +61,6 @@ impl UserTransaction { } } - pub fn version(&self) -> u8 { - match self { - UserTransaction::Declare(tx, _) => tx.version(), - UserTransaction::DeployAccount(tx) => tx.version(), - UserTransaction::Invoke(tx) => tx.version(), - } - } - pub fn offset_version(&self) -> bool { match self { UserTransaction::Declare(tx, _) => tx.offset_version(), @@ -108,14 +103,6 @@ impl DeclareTransaction { } } - pub fn version(&self) -> u8 { - match self { - DeclareTransaction::V0(_) => 0, - DeclareTransaction::V1(_) => 1, - DeclareTransaction::V2(_) => 2, - } - } - pub fn class_hash(&self) -> &Felt252Wrapper { match self { DeclareTransaction::V0(tx) => &tx.class_hash, @@ -159,10 +146,6 @@ impl DeployAccountTransaction { &self.nonce } - pub fn version(&self) -> u8 { - 1 - } - pub fn account_address(&self) -> Felt252Wrapper { Felt252Wrapper(self.get_account_address()) } @@ -230,13 +213,6 @@ impl InvokeTransaction { } } - pub fn version(&self) -> u8 { - match self { - InvokeTransaction::V0(_) => 0, - InvokeTransaction::V1(_) => 1, - } - } - pub fn offset_version(&self) -> bool { match self { // we don't accept V0 txs from the RPC @@ -245,3 +221,111 @@ impl InvokeTransaction { } } } + +pub trait TransactionVersion { + fn version(&self) -> u8; +} + +impl TransactionVersion for UserTransaction { + #[inline(always)] + fn version(&self) -> u8 { + match self { + UserTransaction::Declare(tx, _) => tx.version(), + UserTransaction::DeployAccount(tx) => tx.version(), + UserTransaction::Invoke(tx) => tx.version(), + } + } +} + +impl TransactionVersion for Transaction { + #[inline(always)] + fn version(&self) -> u8 { + match self { + Transaction::Declare(tx) => tx.version(), + Transaction::Deploy(tx) => tx.version(), + Transaction::DeployAccount(tx) => tx.version(), + Transaction::Invoke(tx) => tx.version(), + Transaction::L1Handler(tx) => tx.version(), + } + } +} + +impl TransactionVersion for UserAndL1HandlerTransaction { + #[inline(always)] + fn version(&self) -> u8 { + match self { + UserAndL1HandlerTransaction::User(tx) => tx.version(), + UserAndL1HandlerTransaction::L1Handler(tx, _) => tx.version(), + } + } +} + +impl TransactionVersion for InvokeTransaction { + #[inline(always)] + fn version(&self) -> u8 { + match self { + InvokeTransaction::V0(tx) => tx.version(), + InvokeTransaction::V1(tx) => tx.version(), + } + } +} + +impl TransactionVersion for InvokeTransactionV0 { + #[inline(always)] + fn version(&self) -> u8 { + 0 + } +} + +impl TransactionVersion for InvokeTransactionV1 { + #[inline(always)] + fn version(&self) -> u8 { + 1 + } +} + +impl TransactionVersion for DeclareTransaction { + #[inline(always)] + fn version(&self) -> u8 { + match self { + DeclareTransaction::V0(tx) => tx.version(), + DeclareTransaction::V1(tx) => tx.version(), + DeclareTransaction::V2(tx) => tx.version(), + } + } +} + +impl TransactionVersion for DeclareTransactionV0 { + #[inline(always)] + fn version(&self) -> u8 { + 0 + } +} + +impl TransactionVersion for DeclareTransactionV1 { + #[inline(always)] + fn version(&self) -> u8 { + 1 + } +} + +impl TransactionVersion for DeclareTransactionV2 { + #[inline(always)] + fn version(&self) -> u8 { + 2 + } +} + +impl TransactionVersion for DeployAccountTransaction { + #[inline(always)] + fn version(&self) -> u8 { + 1 + } +} + +impl TransactionVersion for HandleL1MessageTransaction { + #[inline(always)] + fn version(&self) -> u8 { + 0 + } +} diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index ef75604c57..dcd73f89f3 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -55,6 +55,7 @@ pallet-starknet-runtime-api = { workspace = true } # Madara Primitives mp-block = { workspace = true } mp-chain-id = { workspace = true } +mp-fee = { workspace = true } mp-felt = { workspace = true } mp-hashers = { workspace = true } mp-program-hash = { workspace = true } diff --git a/crates/runtime/src/lib.rs b/crates/runtime/src/lib.rs index 16a7174971..076af0b4c0 100644 --- a/crates/runtime/src/lib.rs +++ b/crates/runtime/src/lib.rs @@ -18,6 +18,7 @@ mod runtime_tests; mod types; use blockifier::execution::contract_class::ContractClass; +use blockifier::transaction::objects::TransactionExecutionInfo; pub use config::*; pub use frame_support::traits::{ConstU128, ConstU32, ConstU64, ConstU8, KeyOwnerProofSystem, Randomness, StorageInfo}; pub use frame_support::weights::constants::{ @@ -28,7 +29,7 @@ pub use frame_support::{construct_runtime, parameter_types, StorageValue}; pub use frame_system::Call as SystemCall; use frame_system::{EventRecord, Phase}; use mp_felt::Felt252Wrapper; -use mp_simulations::{SimulatedTransaction, SimulationFlags}; +use mp_simulations::{PlaceHolderErrorTypeForFailedStarknetExecution, SimulationFlags}; use mp_transactions::compute_hash::ComputeTransactionHash; use mp_transactions::{HandleL1MessageTransaction, Transaction, UserTransaction}; use pallet_grandpa::{fg_primitives, AuthorityId as GrandpaId, AuthorityList as GrandpaAuthorityList}; @@ -52,7 +53,7 @@ pub use sp_runtime::{Perbill, Permill}; use sp_std::prelude::*; use sp_version::RuntimeVersion; use starknet_api::api_core::{ClassHash, ContractAddress, EntryPointSelector, Nonce}; -use starknet_api::hash::StarkFelt; +use starknet_api::hash::{StarkFelt, StarkHash}; use starknet_api::state::StorageKey; use starknet_api::transaction::{Calldata, Event as StarknetEvent, Fee, MessageToL1, TransactionHash}; /// Import the types. @@ -263,6 +264,10 @@ impl_runtime_apis! { Starknet::program_hash() } + fn config_hash() -> StarkHash { + Starknet::config_hash() + } + fn fee_token_address() -> ContractAddress { Starknet::fee_token_address() } @@ -275,7 +280,7 @@ impl_runtime_apis! { Starknet::estimate_fee(transactions) } - fn simulate_transactions(transactions: Vec, simulation_flags: SimulationFlags) -> Result, DispatchError> { + fn simulate_transactions(transactions: Vec, simulation_flags: SimulationFlags) -> Result>, DispatchError> { Starknet::simulate_transactions(transactions, simulation_flags) } diff --git a/crates/runtime/src/pallets.rs b/crates/runtime/src/pallets.rs index c9bbe104c3..6268b8a83f 100644 --- a/crates/runtime/src/pallets.rs +++ b/crates/runtime/src/pallets.rs @@ -11,6 +11,7 @@ pub use frame_support::weights::{IdentityFee, Weight}; pub use frame_support::{construct_runtime, parameter_types, StorageValue}; pub use frame_system::Call as SystemCall; pub use mp_chain_id::SN_GOERLI_CHAIN_ID; +use mp_fee::ResourcePrice; pub use mp_program_hash::SN_OS_PROGRAM_HASH; /// Import the StarkNet pallet. pub use pallet_starknet; @@ -48,6 +49,7 @@ impl pallet_starknet::Config for Runtime { type ChainId = ChainId; type MaxRecursionDepth = MaxRecursionDepth; type ProgramHash = ProgramHash; + type L1GasPrice = L1GasPrice; } /// -------------------------------------- @@ -162,6 +164,7 @@ parameter_types! { pub const ChainId: Felt252Wrapper = mp_chain_id::SN_MAIN_CHAIN_ID; pub const MaxRecursionDepth: u32 = 50; pub const ProgramHash: Felt252Wrapper = SN_OS_PROGRAM_HASH; + pub const L1GasPrice: ResourcePrice = ResourcePrice { price_in_strk: None, price_in_wei: 10 }; } /// Implement the OnTimestampSet trait to override the default Aura. diff --git a/da-test/src/utils.rs b/da-test/src/utils.rs deleted file mode 100644 index ec11625a28..0000000000 --- a/da-test/src/utils.rs +++ /dev/null @@ -1,48 +0,0 @@ -use std::path::PathBuf; - -#[cfg(feature = "avail")] -use mc_data_availability::avail::{config::AvailConfig, AvailClient}; -#[cfg(feature = "celestia")] -use mc_data_availability::celestia::{config::CelestiaConfig, CelestiaClient}; -use mc_data_availability::ethereum::config::EthereumConfig; -use mc_data_availability::ethereum::EthereumClient; -use mc_data_availability::{DaClient, DaLayer}; - -#[cfg(feature = "avail")] -use crate::constants::AVAIL_DA_CONFIG; -#[cfg(feature = "celestia")] -use crate::constants::CELESTIA_DA_CONFIG; -use crate::constants::ETHEREUM_DA_CONFIG; - -pub fn get_da_client(da_layer: DaLayer) -> Box { - let da_path = get_da_path(da_layer); - - let da_client: Box = match da_layer { - #[cfg(feature = "celestia")] - DaLayer::Celestia => { - let celestia_conf = CelestiaConfig::try_from(&da_path).expect("Failed to read Celestia config"); - Box::new(CelestiaClient::try_from(celestia_conf).expect("Failed to create Celestia client")) - } - DaLayer::Ethereum => { - let ethereum_conf = EthereumConfig::try_from(&da_path).expect("Failed to read Ethereum config"); - Box::new(EthereumClient::try_from(ethereum_conf).expect("Failed to create Ethereum client")) - } - #[cfg(feature = "avail")] - DaLayer::Avail => { - let avail_conf = AvailConfig::try_from(&da_path).expect("Failed to read Avail config"); - Box::new(AvailClient::try_from(avail_conf).expect("Failed to create Avail client")) - } - }; - - da_client -} - -pub(crate) fn get_da_path(da_layer: DaLayer) -> PathBuf { - match da_layer { - #[cfg(feature = "celestia")] - DaLayer::Celestia => CELESTIA_DA_CONFIG.into(), - DaLayer::Ethereum => ETHEREUM_DA_CONFIG.into(), - #[cfg(feature = "avail")] - DaLayer::Avail => AVAIL_DA_CONFIG.into(), - } -}